Shell

From Gentoo Wiki
Jump to:navigation Jump to:search
This page contains changes which are not marked for translation.
Other languages:
Resources

A shell is a command-line interpreter that offers a text-based interface to users. It can be used as a command-line interface in a virtual console (or in a terminal emulator, over a serial connection, etc.), as a remote shell (over SSH, for example), or as a script interpreter (running prewritten commands).

Typically, the shell is the first program started after a user logs in at a terminal. The /etc/passwd file contains information defining the login shell for each user on the system. After login, a user can launch other shells from a terminal, change their login shell, or specify a shell to use under certain terminal emulators.

In Gentoo, the /bin/sh file is a symlink to the default system shell, and as such can link to one of several different POSIX shells. After following the Handbook the default shell will be bash.

See also
See the terminal emulator article for some general usage pointers.
Note
When writing scripts, care should be taken to reference the correct interpreter on the first line by using a shebang. A script beginning with #!/bin/sh should only use POSIX constructs without any bash specific code, for example.

The Command Line Interface

The Unix(like) command line interface (CLI) is a powerful, mature paradigm to interact with modern computers. The CLI maintains some notable advantages over graphically-based models, which makes it the tool of choice for many professionals.

The CLI provides a standardized text-based interface generally accessed through a shell running in a terminal emulator (or virtual console).

The CLI has a rich history that predates even CRT screen technology, beginning on teleprinters. This long history has resulted in a sophisticated system, which has developed many of its characteristics along with the UNIX OS. Today, text is almost always entered with a keyboard, and output presented on a screen.

Though the learning curve may be steeper than for GUIs, once minimal skill is acquired the CLI provides all the commands available on a system right under the user's fingertips, without having to read and navigate menus.

CLI tools tend to provide simple, easily memorizable interfaces whose options can be combined to achieve desired functionality. The CLI generally follows a standard interface to allow tight interaction between tools. It also allows for accessing the manuals of tools via man pages, or more quickly and simply via --help.

Modern shells allow for powerful constructs such as pipes by which various tools can interact seamlessly, and for the filtering and sorting of output via several CLI utilities.

Some CLI utilities may be interactive, either by asking for basic input after execution or by opening a command-specific subshell. Most utilities take input from the command line, standard input, files, devices, or a network. Then they output either to the command line, or else have their output redirected to a file or piped to other commands.

Available software

Gentoo provides a choice of shells, some of which are:

Name Package Homepage Description
bash app-shells/bash https://tiswww.case.edu/php/chet/bash/bashtop.html The Bourne Again Shell is the default shell on Gentoo. It is used by Portage, Gentoo's default package manager.
dash app-shells/dash http://gondor.apana.org.au/~herbert/dash/ The Debian Almquist Shell. A small, fast, posix-compliant shell suited for startup scripts (as /bin/sh replacement).
fish app-shells/fish https://fishshell.com/ The Friendly Interactive SHell.
ksh app-shells/ksh http://www.kornshell.com/ The Original Korn Shell, 1993 revision (ksh93).
mksh app-shells/mksh https://www.mirbsd.org/mksh.htm An actively developed free implementation of the Korn Shell, well suited for scripting.
pwsh app-shells/pwsh-bin https://learn.microsoft.com/powershell/ Most shells assume "everything is a file". PowerShell is an object-oriented shell where "everything is an object". Now MIT-licensed and available on Linux.
tcsh app-shells/tcsh http://www.tcsh.org/ An enhanced version of the Berkeley C Shell (csh).
yash app-shells/yash https://yash.osdn.jp/ Yet Another SHell is a POSIX-compliant command line shell written in C99 (ISO/IEC 9899:1999).
zsh app-shells/zsh http://www.zsh.org/ An advanced shell that is the chosen interactive shell for many users.

For more shell options, see the app-shells package category or the output of the following command (eix required):

user $eix -cC app-shells

Configuration

See also
See the login article for how the environment is set up.

System shell

Important
Changing /bin/sh to something other than bash can cause rare issues with badly written scripts, e.g. scripts starting with #!/bin/sh but using bash-specific code. See bug #526268. It may be safer to leave the system shell as the default bash, and set user login shells when creating users, or using the chsh command for existing users - see next section.
Note
It's normal that only a handful of POSIX compatible shells will be available to be used with this method. See the next section on how to set user login shells, which allows setting more shells as default. Also note the above warning, and consider preferentially using the method from the next section to set any shell as default.

The "system shell" is used when executed from /bin/sh, such as by scripts that start with #! /bin/sh. Changing the "system shell" will not change what shell users login to, and will not change what shell is set for new users either.

System administrators can change the system shell using USE flags on app-alternatives/sh. This utility changes the system shell by replacing /bin/sh with a symlink to a different POSIX compatible shell.

USE flags for app-alternatives/sh /bin/sh (POSIX shell) symlink

bash Symlink to app-shells/bash
busybox Symlink to sys-apps/busybox
dash Symlink to app-shells/dash
ksh Symlink to app-shells/ksh
lksh Symlink to lksh from app-shells/mksh
mksh Symlink to mksh from app-shells/mksh

To set a particular choice for /bin/sh use /etc/portage/package.use:

FILE /etc/portage/package.use
# Make /bin/sh a symlink to dash from app-shells/dash
app-alternatives/sh -bash dash

User's login shell

Important
Some shells such as fish can cause issues if directly set as the login shell. See the caveats section of the fish article to see how to set it as a default shell safely.

Login-shell settings are stored in /etc/passwd.

Creating a user with a specific login shell

Login shells can be set when creating a new user with the useradd command (from sys-apps/shadow).

To create a user and specify their login shell:

user $useradd -s /bin/ksh -m larry

The -s option indicates the path to the shell, the -m option instructs the useradd command to create the new user's home directory if it does not already exist.

Setting an existing user's login shell

A user's login shell can be changed using the chsh command. To change the login shell for the current user, type chsh and enter the path to the new shell. In the example below, a user named larry is changing their login shell from /bin/ksh to /bin/zsh:

user $chsh
Changing the login shell for larry
Enter the new value, or press ENTER for the default
	Login Shell [/bin/ksh]: /bin/zsh

chsh can be used to change the login shell for any user from the super user account (root).

The chsh command only allows shells listed in /etc/shells.

Troubleshooting

Garbled display

The output of a shell can, in some conditions, become corrupt. See the terminal emulator article for instructions to help fix this.

See also