Bash
GNU Bash (Bourne-again shell) is [[Article description::the default shell on Gentoo systems and a popular shell program found on many Linux systems.]]
Installation
bash is part of the @system set and comes installed on every Gentoo system. It is also used by Portage, Gentoo's default package manager. It is highly recommended to not uninstall bash (or any other package in the @system set), even if another shell is used as a login-shell.
USE flags
It is possible to change USE flags:
USE flags for app-shells/bash The standard GNU Bourne again shell
afs
|
Add OpenAFS support (distributed file system) |
bashlogger
|
Log ALL commands typed into bash; should ONLY be used in restricted environments such as honeypots |
examples
|
Install examples, usually source code |
mem-scramble
|
Build with custom malloc/free overwriting allocated/freed memory |
net
|
Enable /dev/tcp/host/port redirection |
nls
|
Add Native Language Support (using gettextGNU locale utilities) |
plugins
|
Add support for loading builtins at runtime via 'enable' |
readline
|
Enable support for libreadline, a GNU line-editing library that almost everyone wants |
After making USE modifications, ask Portage to update the system so the changes take effect:
root #
emerge --ask --changed-use --deep @world
Configuration
Login shell
The default login shell for a user is defined in the /etc/passwd file. The login shell can be changed using the chsh utility, which is part of sys-apps/coreutils package.
Files
There are many settings to consider when determining how to modify the shell's behavior. Configuration changes can be defined via variables, functions, or shell built-ins. These settings are defined in several different configuration files, where the settings in the last file parsed will overwrite entries in previously defined files.
- /etc/profile - Initial settings for all users.
- ~/.bash_profile - Settings for this user.
- ~/.bash_login - Settings for this user, if ~/.bash_profile does not exist.
- ~/.profile - Settings for this user, if ~/.bash_profile and/or ~/.bash_login do not exist.
If the shell is started without login (e.g. in a terminal on a desktop), the following files are used:
- /etc/bashrc - Initial settings for all users.
- ~/.bashrc - Settings on a per-user basis.
In Gentoo, and many other Linux distributions, the /etc/bashrc file is parsed in /etc/profile to ensure that /etc/bashrc and ~/.bashrc are always checked when someone logs into the system. If it exists, the final settings are always defined by the user in each ~/.bashrc file.
.bashrc
~/.bashrc
<syntaxhighlight lang="bash"># Modify the PS1 variable to adjust command prompt # /u the username of the current user # /h the hostname up to the first `.' # /w the current working directory, with $HOME abbreviated with a tilde (uses the value of the PROMPT_DIRTRIM variable) # /$ if the effective UID is 0, a #, otherwise a $ # For more PS1 options see the PROMPTING section of `man 1 bash` PS1='\u@\h \w \$ ' # No double entries in the shell history. export HISTCONTROL="$HISTCONTROL erasedups:ignoreboth" # Do not overwrite files when redirecting output by default. set -o noclobber # Wrap the following commands for interactive use to avoid accidental file overwrites. rm() { command rm -i "${@}"; } cp() { command cp -i "${@}"; } mv() { command mv -i "${@}"; }</syntaxhighlight>
Tab completion
The app-shells/bash-completion package adds completion to many programs and their parameters. To enable completion, just merge the package. No special use flags for packages, which support completion, are required.
root #
emerge --ask app-shells/bash-completion
Bash completion for all supported programs is enabled by default[1]. Available completions using
user $
eselect bashcomp list
and specific completions disabled using
user $
eselect bashcomp disable <command-name>
To disable bash completion on a per user basis, create an .inputrc file with the following content in the user's home directory, then open a new bash shell:
~/.inputrc
<syntaxhighlight lang="bash"># Disable bash completion set disable-completion on</syntaxhighlight>
Usage
Environment variables
See all variables for the current shell process which have the export attribute set:
user $
export
Of course, users can export their own variables, which are available to the current process and inherited by child processes:
user $
export MYSTUFF=Hello
Environment variables can also be localized to an individual child process by prepending an assignment list to a simple command. The resulting environment passed to execve()
will be the union of the assignment list with the environment of the calling shell process:
user $
USE=kde emerge -pv libreoffice
To check the value of a variable:
user $
typeset -p MYSTUFF
PS1
The special shell variable named PS1 defines what the terminal prompt looks like:
MyUserName@MyPC: ~ $
The
~
(tilde) symbol represents the current user's home directory (also represented by the HOME environment variable in bash).This prompt would be the following value for the PS1 variable:
<syntaxhighlight lang="bash"> PS1="\u@\h \w $ " </syntaxhighlight>
The following table lists the possible placeholders that can be used in the PS1 variable:
Code | Effect |
---|---|
\u |
Username. |
\h |
Hostname. |
\w |
Current directory. |
\d |
Current date. |
\t |
Current time. |
\$ |
Indicate the root user with '#' and normal users with '$'. |
\j |
Number of currently running tasks (jobs). |
You can also put complete commands into your prompt using a command substitution. Here we want to execute cut -d\ -f1 /proc/loadavg to show the one-minute load average at the beginning of the prompt:
<syntaxhighlight lang="bash"> PS1="\$(cut -d\ -f1 /proc/loadavg) $ " </syntaxhighlight>
Looks like:
0.10 $
Having colors in the prompt:
<syntaxhighlight lang="bash"> PS1="\e[0;32m\]\u@\h \w >\e[0m\] " </syntaxhighlight>
The \e[0;32m\]
changes the color for every next output, we have to put \e[0m\]
at the end of our variable to reset the color, or we would type everything in green.
Color codes:
Code | Color |
---|---|
\e[0;30m\] |
Black |
\e[0;31m\] |
Red |
\e[0;32m\] |
Green |
\e[0;33m\] |
Yellow |
\e[0;34m\] |
Blue |
\e[0;35m\] |
Magenta |
\e[0;36m\] |
Cyan |
\e[0;37m\] |
White |
\e[0m\] |
Reset to standard colors |
The 0;
in \e[0;31m\]
means foreground. You can define other values like 1;
for foreground bold and 4;
for foreground underlined. Omit this number to refer to the background, e.g. \e[31m\]
.
Built-ins
set
The set command is a shell built-in used to display and change settings in the bash shell.
Show all current settings:
user $
set -o
Disable the shell history:
user $
set +o history
Enable the shell history:
user $
set -o history
alias
You can use the alias builtin to define a new command or redefine an existing command:
user $
alias ll='ls -l'
Whenever now ll (two lowercase Ls) is send to the shell, it will actually execute ls -l.
To remove an alias:
user $
unalias ll
No harm is done to the actual command being redefined.
If you want to temporarily bypass an alias you can escape the first letter of the command with a backslash character:
user $
\ls
history
The history of used commands in a session is written to a file in the user's home directory. The easiest way to access the commands in the history is using the Up and Down keys.
To show all commands in the current history:
user $
history
To search for commands in the history, by piping the output through grep and filter for words:
user $
history | grep echo
The commands are numbered and can be executed using their index:
user $
!2
To execute the last command used:
user $
!!
Delete every command in the history:
user $
history -c
Show the current settings for history:
user $
echo $HISTCONTROL
Keyboard shortcuts
bash includes two different keyboard shortcuts modes to make editing input on the command-line easier: emacs mode and vi mode. bash defaults to emacs mode.
vi mode
vi mode requires an Esc key press to prefix very movement or edit, so it can be a bit awkward to learn this mode. To change the mode to vi mode, execute the following command:
user $
set -o vi
Review this bash vi editing mode cheat sheet document by Peteris Krumins for more details on key bindings in vim mode.
emacs mode
To switch to emacs mode (which is the default mode):
user $
set -o emacs
Movement:
- Ctrl+a
- Move the cursor to the beginning of the line (Home).
- Ctrl+e
- Move the cursor to the end of the line (End).
- Ctrl+f
- Move the cursor forward one character.
- Ctrl+b
- Move the cursor back one character.
- Ctrl+xx
- Toggle the cursor between the current position and the beginning of the line.
Screen control:
- Ctrl+S
- Stop (pause) output on the screen.
- Ctrl+Q
- Resume output on the screen (after stopping it with the previous command).
- Ctrl+L
- Clears the screen (very similar to the clear command).
Scripts
Shell scripts are text files which contain programs written in a certain shell scripting language. Which shell is used to interpret the commands in a script is defined by the first line of the script. This consists of two special characters #!
(called the shebang), then a direct path to the shell. For example:
myscript
<syntaxhighlight lang="bash">#!/bin/bash echo 'Hello World!'</syntaxhighlight>
If no shell is defined the default shell for the user who executes the script is used. Often /bin/sh is used, which is the father of all shells and has very limited functionalities. Nearly all shells available understand commands used when running /bin/sh, so those scripts are highly portable.
On many distributions /bin/sh is a symbolic link to /bin/bash. But on other distributions (like Debian) it can be a symbolic link to /bin/dash, which is a POSIX compliant variant of sh. In order to insure a good portability, be sure to test any script using the same shell than the one used in its shebang.
Start scripts
To run scripts directly from the command-line, they need to be executable. To make a shell script executable:
user $
chmod +x myscript
Now the script can be executed by using the ./ prefix, where either the shell defined by the shebang in the script or the default shell of the user is used:
user $
./myscript
Redirection
In Bash it is possible to redirect the output of one program into the input of another program using a pipe, indicated by the |
symbol. This enables users to create command chains. Here is an example to redirect the output of ls -l into the program /usr/bin/less:
user $
ls -l | less
To redirect output into a file:
user $
ls -l > ls_l.txt
The >
operator will erase any previous content before adding new one. If this is not desired, use the >>
(append) operator instead.
Logical operators
Logical operators are very useful to chain commands together. This is helpful when checking if the previous command finished successfully or not.
&&
(AND) - The following command prints 'Success' only if our test script is successful:
user $
./myscript && echo 'Success'
||
(OR) - The following command prints 'Failure' only if our test script is unsuccessful:
user $
./myscript || echo 'Failure'
Jobs
Usually if we start a script or command, the input is blocked until the command is finished. To start a program directly in the background, so we can continue to work in the shell:
user $
./myscript &
This will execute the script as job number 1 and the prompt expects the next input.
If a program is already running and you need to do something on the shell, it is possible to move programs from foreground to background and vice versa. To get a command prompt if a command is running on the shell, put it into sleep using Ctrl+Z, then move it to the background:
user $
bg %1
To list all jobs running in the background:
user $
jobs
To move a job back to foreground:
user $
fg %1
Programs running as jobs usually do not terminate once they finish execution, there will be a message if a job finished and bringing it to foreground will then terminate the program.
Command substitution
Using a command substitution, it is possible to run programs as parameters of other commands like here:
user $
emerge $(qlist -CI x11-drivers)
This will first execute the command in the brackets and append the output as parameter of emerge.
This command is quite useful in Gentoo to quickly rebuild all X11 drivers.
More substitutions can be performed in one command like this:
user $
emerge $(qlist -CI x11-drivers) $(qlist -CI modules)
See also
External resources
- Bash reference from the Gentoo Developer's Handbook.
- Advanced Bash-Scripting Guide - From the Linux Documentation Project.
- Chet's Bash page
- Official upstream documentation
- The Bash FAQ and Bash guide on Greg Wooledge's wiki
- bash-hackers - A wiki covering bash syntax (a very good reference for shell scripting).
- Bash cgit
- POSIX sh spec
- mksh, ksh93, and ksh88 manuals for cross-reference
- Comprehensive Beginner Linux Tutorial
References
- โ News Items - bash-completion-2.1-r90, November 25th, 2014. Retrieved on May 13th, 2017.