Bash Guide For Beginers
Bash Guide For Beginers
Bash is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C
shell (csh). It is intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools
standard. It offers functional improvements over sh for both programming and interactive use;
these include command line editing, unlimited size command history, job control, shell functions
and aliases, indexed arrays of unlimited size, and integer arithmetic in any base from two to
sixty-four. Bash can run most sh scripts without modification.
Like the other GNU projects, the bash initiative was started to preserve, protect and promote the
freedom to use, study, copy, modify and redistribute software. It is generally known that such
conditions stimulate creativity. This was also the case with the bash program, which has a lot of
extra features that other shells can't offer.
In addition to the single-character shell command line options which can generally be configured
using the set shell built-in command, there are several multi-character options that you can use.
We will come across a couple of the more popular options in this and the following chapters; the
complete list can be found in the Bash info pages, Bash features->Invoking Bash.
Startup files are scripts that are read and executed by Bash when it starts. The following
subsections describe different ways to start the shell, and the startup files that are read
consequently.
Interactive means you can enter commands. The shell is not running because a script has been
activated. A login shell means that you got the shell after authenticating to the system, usually by
giving your user name and password.
Files read:
/etc/profile
~/.bash_profile, ~/.bash_login or ~/.profile: first existing readable file is read
~/.bash_logout upon logout.
Error messages are printed if configuration files exist but are not readable. If a file does not exist,
bash searches for the next.
A non-login shell means that you did not have to authenticate to the system. For instance, when
you open a terminal using an icon, or a menu item, that is a non-login shell.
Files read:
~/.bashrc
All scripts use non-interactive shells. They are programmed to do certain tasks and cannot be
instructed to do other jobs than those for which they are programmed.
Files read:
defined by BASH_ENV
PATH is not used to search for this file, so if you want to use it, best refer to it by giving the full
path and file name.
Bash tries to behave as the historical Bourne sh program while conforming to the POSIX
standard as well.
Files read:
/etc/profile
~/.profile
When invoked interactively, the ENV variable can point to extra startup information.
set -o posix
or by calling the bash program with the --posix option. Bash will then try to behave as
compliant as possible to the POSIX standard for shells. Setting the POSIXLY_CORRECT variable
does the same.
Files read:
~/.bashrc
An interactive shell generally reads from, and writes to, a user's terminal: input and output are
connected to a terminal. Bash interactive behavior is started when the bash command is called
upon without non-option arguments, except when the option is a string to read from or when the
shell is invoked to read from standard input, which allows for positional parameters to be set (see
Chapter 3 ).
Test by looking at the content of the special parameter -, it contains an 'i' when the shell is
interactive:
eddy:~> echo $-
himBH
More information:
Section 3.2
Section 3.6
See Chapter 12 for more about signals.
Section 3.4 discusses the various expansions performed upon entering a command.
1.2.2.4. Conditionals
Conditional expressions are used by the [[ compound command and by the test and [ built-in
commands.
Expressions may be unary or binary. Unary expressions are often used to examine the status of a
file. You only need one object, for instance a file, to do the operation on.
There are string operators and numeric comparison operators as well; these are binary operators,
requiring two objects to do the operation on. If the FILE argument to one of the primaries is in
the form /dev/fd/N, then file descriptor N is checked. If the FILE argument to one of the
primaries is one of /dev/stdin, /dev/stdout or /dev/stderr, then file descriptor 0, 1 or 2
respectively is checked.
The shell allows arithmetic expressions to be evaluated, as one of the shell expansions or by the
let built-in.
Evaluation is done in fixed-width integers with no check for overflow, though division by 0 is
trapped and flagged as an error. The operators and their precedence and associativity are the
same as in the C language, see Chapter 3.
1.2.2.6. Aliases
Aliases allow a string to be substituted for a word when it is used as the first word of a simple
command. The shell maintains a list of aliases that may be set and unset with the alias and
unalias commands.
Bash always reads at least one complete line of input before executing any of the commands on
that line. Aliases are expanded when a command is read, not when it is executed. Therefore, an
alias definition appearing on the same line as another command does not take effect until the
next line of input is read. The commands following the alias definition on that line are not
affected by the new alias.
Aliases are expanded when a function definition is read, not when the function is executed,
because a function definition is itself a compound command. As a consequence, aliases defined
in a function are not available until after that function is executed.
1.2.2.7. Arrays
Bash provides one-dimensional array variables. Any variable may be used as an array; the
declare built-in will explicitly declare an array. There is no maximum limit on the size of an
array, nor any requirement that members be indexed or assigned contiguously. Arrays are zero-
based. See Chapter 10.
The directory stack is a list of recently-visited directories. The pushd built-in adds directories to
the stack as it changes the current directory, and the popd built-in removes specified directories
from the stack and changes the current directory to the directory removed.
Content can be displayed issuing the dirs command or by checking the content of the DIRSTACK
variable.
More information about the workings of this mechanism can be found in the Bash info pages.
Bash makes playing with the prompt even more fun. See the section Controlling the Prompt in
the Bash info pages.
When invoked as rbash or with the --restricted or -r option, the following happens:
When a command that is found to be a shell script is executed, rbash turns off any restrictions in
the shell spawned to execute the script.
More information:
Section 3.2
Section 3.6
Info Bash->Basic Shell Features->Redirections
Section 8.2.3: advanced redirection
After the forking process, the address space of the child process is overwritten with the new
process data. This is done through an exec call to the system.
The fork-and-exec mechanism thus switches an old command with a new, while the environment
in which the new program is executed remains the same, including configuration of input and
output devices, environment variables and priority. This mechanism is used to create all UNIX
processes, so it also applies to the Linux operating system. Even the first process, init, with
process ID 1, is forked during the boot procedure in the so-called bootstrapping procedure.
:, ., break, cd, continue, eval, exec, exit, export, getopts, hash, pwd, readonly, return,
set, shift, test, [, times, trap, umask and unset.
alias, bind, builtin, command, declare, echo, enable, help, let, local, logout, printf,
read, shopt, type, typeset, ulimit and unalias.
1. Special built-ins are found before shell functions during command lookup.
The POSIX special built-ins are :, ., break, continue, eval, exec, exit, export, readonly,
return, set, shift, trap and unset.
Most of these built-ins will be discussed in the next chapters. For those commands for which this
is not the case, we refer to the Info pages.
While the subshell processes each line of the script, the parent shell waits for its child process to
finish. When there are no more lines in the shell script to read, the subshell terminates. The
parent shell awakes and displays a new prompt.
If input is not commented, the shell reads it and divides it into words and operators, employing
quoting rules to define the meaning of each character of input. Then these words and operators
are translated into commands and other constructs, which return an exit status available for
inspection or processing. The above fork-and-exec scheme is only applied after the shell has
analyzed input in the following way:
The shell reads its input from a file, from a string or from the user's terminal.
Input is broken up into words and operators, obeying the quoting rules, see Chapter 3.
These tokens are separated by metacharacters. Alias expansion is performed.
The shell parses (analyzes and substitutes) the tokens into simple and compound
commands.
Bash performs various shell expansions, breaking the expanded tokens into lists of
filenames and commands and arguments.
Optionally the shell waits for the command to complete and collects its exit status.
A simple shell command such as touch file1 file2 file3 consists of the command itself
followed by arguments, separated by spaces.
More complex shell commands are composed of simple commands arranged together in a variety
of ways: in a pipeline in which the output of one command becomes the input of a second, in a
loop or conditional construct, or in some other grouping. A couple of examples:
ls | more
Shell functions are a way to group commands for later execution using a single name for the
group. They are executed just like a "regular" command. When the name of a shell function is
used as a simple command name, the list of commands associated with that function name is
executed.
Shell functions are executed in the current shell context; no new process is created to interpret
them.
A parameter is an entity that stores values. It can be a name, a number or a special value. For the
shell's purpose, a variable is a parameter that stores a name. A variable has a value and zero or
more attributes. Variables are created with the declare shell built-in command.
If no value is given, a variable is assigned the null string. Variables can only be removed with the
unset built-in.
Assigning variables is discussed in Section 3.2, advanced use of variables in Chapter 10.
Shell expansion is performed after each command line has been split into tokens. These are the
expansions performed:
Brace expansion
Tilde expansion
Command substitution
Arithmetic expansion
Word splitting
Filename expansion
1.4.1.6. Redirections
Before a command is executed, its input and output may be redirected using a special notation
interpreted by the shell. Redirection may also be used to open and close files for the current shell
execution environment.
When executing a command, the words that the parser has marked as variable assignments
(preceding the command name) and redirections are saved for later reference. Words that are not
variable assignments or redirections are expanded; the first remaining word after expansion is
taken to be the name of the command and the rest are arguments to that command. Then
redirections are performed, then strings assigned to variables are expanded. If no command name
results, variables will affect the current shell environment.
An important part of the tasks of the shell is to search for commands. Bash does this as follows:
Check whether the command contains slashes. If not, first check with the function list to
see if it contains a command by the name we are looking for.
If the search is unsuccessful, bash prints an error message and returns an exit status of
127.
If the search was successful or if the command contains slashes, the shell executes the
command in a separate execution environment.
If execution fails because the file is not executable and not a directory, it is assumed to be
a shell script.
If the command was not begun asynchronously, the shell waits for the command to
complete and collects its exit status.
When a file containing shell commands is used as the first non-option argument when invoking
Bash (without -c or -s, this will create a non-interactive shell. This shell first searches for the
script file in the current directory, then looks in PATH if the file cannot be found there.