Bash
GNU Bash (Bourne-again shell) is the default shell on Gentoo systems and a popular shell program found on many Linux systems.
See the terminal emulator article for some general usage pointers.
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 for the bash package:
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 gettext - GNU locale utilities) |
pgo
|
Optimize the build using Profile Guided Optimization (PGO) |
plugins
|
Add support for loading builtins at runtime via 'enable' |
readline
|
Enable support for libreadline, a GNU line-editing library that almost everyone wants |
verify-sig
|
Verify upstream signatures on distfiles |
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
Bash is the default shell on Gentoo, after installation. The default login shell for a user is defined in the /etc/passwd file.
The login shell can be changed using the chsh utility (from sys-apps/shadow, which is part of the base profile). See the articles on login and on shell configuration for more info.
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 (global) settings for all users.
- ~/.bash_profile - Local bash profile settings for the current user.
- ~/.bash_login - Local settings for the current user, if ~/.bash_profile does not exist.
- ~/.profile - Settings for the current 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 (global) settings for all users.
- ~/.bashrc - Local settings on a per-user basis.
.bashrc
In Gentoo, and many other Linux distributions, the /etc/bashrc file is parsed from /etc/profile in order to ensure that /etc/bashrc and ~/.bashrc are always checked when a user executes a new (non-login) shell. If a user ~/.bashrc file exists, the settings in the local file always override the settings from the global file (/etc/bashrc).
~/.bashrc
# This file contains suggested settings for a user's ~/.bashrc file. # 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 "${@}"; }
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
Further, the app-shells/gentoo-bashcomp package adds Gentoo-specific completions for e.g. emerge. The bash-completion package already depends on this for user convenience.
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
# Disable bash completion set disable-completion on
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:
larry@gentoo: ~ $
In the above example, larry is the user name, gentoo is the system hostname, and 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:
PS1="\u@\h \w $ "
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). |
Complete commands can be put into prompt using a command substitution. The following will execute the cut -d\ -f1 /proc/loadavg command to show the one-minute load average at the beginning of the prompt:
PS1="\$(cut -d\ -f1 /proc/loadavg) $ "
Looks like:
0.10 $
Having colors in the prompt:
PS1="\e[0;32m\]\u@\h \w >\e[0m\] "
The \e[0;32m\]
changes the color for every next output, put \e[0m\]
at the end of the variable to reset the color, otherwise the whole prompt will be 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. If desired, other values like 1;
for foreground bold and 4;
for foreground underlined can be defined. Omit this number to refer to the background, e.g. \e[31m\]
.
Readers may find this PS1 generator website useful when attempting to modify the PS1 variable.
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
The alias builtin can be used to define a new command or redefine an existing command:
user $
alias ll='ls -l'
Now whenever 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.
To temporarily bypass an alias escape the first letter of the command with a backslash character:
user $
\ls
Listing
Run alias without any arguments to display a list of currently defined aliases:
user $
alias
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
The following sections are select excerpts from the bash man page. They can be retrieved locally by reading man 1 bash. They contain useful command-line navigation shortcuts and bash built-ins.
Search for Commands for Moving
for the beginning of the section.
Line movement:
- ctrl+a
- Move cursor to the beginning of the line (home).
- ctrl+e
- Move cursor to the end of the line (end).
- ctrl+f
- Move the cursor forward one character.
- ctrl+b
- Move the cursor back one character.
- alt+f
- Move cursor forward one word.
- alt+b
- Move cursor backward one word.
- ctrl+xx
- Toggle the cursor between the current position and the beginning of the line.
- ctrl+]-<CHAR>
- Move cursor to the first occurrence of the entered character to the right.
- ctrl+alt-]-<CHAR>
- Move cursor to the first occurrence of the entered character to the left.
Directory movement:
- cd /path
- Change to /path directory.
- cd -
- Change to previous directory.
- cd
- Change to home directory.
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 preserving the current command (very similar to the clear command).
Text manipulation
Deletion:
- ctrl+u
- Remove text relative to the cursor's current position to the beginning of the line.
- ctrl+k
- Remove text relative to the cursor's current position to the end of the line.
- alt+d
- Remove one word moving forward from the cursor's current position.
- ctrl+w
- Remove one word moving backward from the cursor's current position.
- ctrl+y
- Paste deleted text.
Command history
- ctrl+p
- Scroll backward through previous command history for the current session.
- ctrl+p
- Scroll forward through next entry in command history for the current session
- ctrl+r
- Reverse search through history (type parts of the command to initiate query).
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
#!/bin/bash echo 'Hello World!'
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 ensure good portability, be sure to test any script using the same shell as the one 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 when script or command has been executed shell input is blocked until after execution has completed. To start a program directly in the background, append the ampersand character (&) to the end of the command:
user $
./myscript &
This will execute the script as job number 1 and the prompt expects the next input.
When a program is already running, but the shell is needed for another task, it is possible to move programs from foreground to background and vice versa. To get a command prompt when 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 --ask --oneshot $(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 --ask --oneshot $(qlist -CI x11-drivers) $(qlist -CI modules)
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
- Shell — command-line interpreter that offers a text-based interface to users.
- Dash — a small, fast, and POSIX compliant shell.
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.