Jump to content

Bash (Unix shell)

From Wikipedia, the free encyclopedia
(Redirected from Bourne Again Shell)

Bash
Original author(s)Brian Fox
Developer(s)Chet Ramey
Initial release8 June 1989; 35 years ago (8 June 1989)
Stable release
5.2.37[1] Edit this on Wikidata / 23 September 2024
Repository
Written inC
Operating system
PlatformGNU
Available inMultilingual (gettext)
TypeShell (computing), Unix shell, command language
LicenseSince 4.0: GPL-3.0-or-later,
1.11? to 3.2: GPL-2.0-or-later,
0.99? to 1.05?: GPL-1.0-or-later
Websitewww.gnu.org/software/bash/

Bash, short for Bourne-Again SHell, is a shell program and command language supported by the Free Software Foundation[2] and first developed for the GNU Project[3] by Brian Fox.[4] Designed as a 100%[5] free software alternative for the Bourne shell,[6][7][8] it was initially released in 1989.[9] Its moniker is a play on words, referencing both its predecessor, the Bourne shell,[10] and the concept of rebirth.[11][12]

Since its inception, Bash has gained widespread adoption and is commonly used as the default login shell for numerous Linux distributions. It holds historical significance as one of the earliest programs ported to Linux by Linus Torvalds, alongside the GNU Compiler (GCC).[13] It is available on nearly all modern operating systems, making it a versatile tool in various computing environments.

As a command processor, Bash operates within a text window where users input commands to execute various tasks. It also supports the execution of commands from files, known as shell scripts, facilitating automation. In keeping with Unix shell conventions, Bash incorporates a rich set of features. The keywords, syntax, dynamically scoped variables, and other basic features of the language are all copied from the Bourne shell, sh. Other features, e.g., history, are copied from the C shell, csh, and the Korn Shell, ksh. It is a POSIX-compliant shell with extensions.

History

[edit]

While Bash was developed for UNIX and UNIX-like operating systems, such as GNU/Linux,[14] it is also available on Android, macOS, Windows, and numerous other current and historical operating systems. "Although there have been attempts to create specialized shells, the Bourne shell derivatives continue to be the primary shells in use."[15]

( Work in Progress )

[edit]
1963
[edit]

While at MIT developing for the CCTS operating system, Louis Pouzin wrote "'RUNCOM', a sort of shell driving the execution of command scripts, with argument substitution." He "felt that commands should be usable as building blocks for writing more commands, just like subroutine libraries."[16]

1964
[edit]

Development began on MULTICS at MIT.

1965
[edit]

Louis Pouzin of MIT: "Christopher Strachey, a British scientist, had visited MIT about that time, and his macro-generator design appeared to me a very solid base for a command language, in particular the techniques for quoting and passing arguments. Without being invited on the subject, I wrote a paper explaining how the Multics command language could be designed with this objective. And I coined the word "shell" to name it."[16]

April 2, 1965, MIT, "The SHELL, A Global Tool for Calling and Chaining Procedures in the System," by Louis Pouzin. Definition of a "command;" spaces as delimiters; first argument is always a command; other arguments are parameters passed to the command; comprehensive error codes; quoting literals including blanks; command search of HOME; user supplied executables including shell executables; parsing of arguments by the shell or by individual programs; each shell call is a separate child process; optional history of "stack", where full commandlines are stored; strays into kernel handling of processes; a QUIT signal; a DEBUG system; output memory of arbitrary, limited size; files as input; comma separating commandlines (as now in arithmetics); syncronous commands, user control suspended during command operation; a set of arguments defined as general conventions of the system; more as a command name; child process gets working copy of RO memory

"A command MUST be designed while keeping in mind the user, sitting at his console, wondering about what might be going on, mistyping or forgetting arguments, even if fully aware of the conventions, and possibly interfering with the command by hasty quits, ·carriage returns, and other temperamental reactions. ... And if some unexpected situation has occurred, the command must specify clearly what the user has to know for further action. Again, unlike a calling program, a user is not assigned once and for all a predetermined set of instructions. One does not know what he plans to do next, and he will eventually overlook some yet highly recommendable checking, if the command does not warn him against any possible misunderstanding as to what has been performed."

"We may envision a common procedure called automatically by the supervisor whenever a user types in some message at his console, at a time when he has no other process in active execution under console control (presently called command level). This procedure acts as an interface between console messages and subroutine. The purpose of such a procedure is to create a medium of exchange into which one could activate any procedure, ~ if _g ~ called~~ inside of another program. Hereafter, for simplification, w·e shall refer to that procedure as the SHELL"."

"The fact of being able to invoke all the tools available in the system, (as opposed to the only features of a particular monitor) provides a very high flexibility for chaining and inters?ersing tasks, and relieves from the handcuffs of the linear stream of control cards and associated data. The SHELL must not be seen as merely a console oriented tool, even though some parts of it are specifically console oriented~ As a point of fact the S}lliLL is first of all a general procedure-linking tool, and as such fits equally the batch-type process requirements, where no console is attached during execution."

"As a general policy, all system tools should keep the same rules as the-SHEU.. does with respect to meta-arguments. This would bring about a clean consistency, and a logical behavior among all procedures."

"It was modeled after the Multics shell, developed in 1965 by American software engineer Glenda Schroeder. Schroeder's Multics shell was itself modeled after the RUNCOM program Louis Pouzin showed to the Multics Team. The "rc" suffix on some Unix configuration files (for example, ".vimrc"), is a remnant of the RUNCOM ancestry of Unix shells."(Wikipedia page on UNIX Shells.)

1969
[edit]

The MULTICS operating system was introduced as a collaboration between MIT, GE and Bell Labs. "It is also the first to have a command processor implemented as ordinary user code – an idea later used in the Unix shell."Multics Wikipage Some predecessor of the Thompson shell existed pre-1971 in MULTICS.[15] Redirections began in Multics, also (wikipedia Multics page).

AT&T began development on UNIX at Bell Labs, under proprietary licensing.

1971
[edit]

"Ken Thompson (of Bell Labs) developed the first shell for UNIX called the 'V6 shell'." Its sole purpose was to serve as an interactive shell. It supported external commands called glob, for pattern matching, and if, for conditional expressions. "The shell introduced a compact syntax for redirection (< > and >>) and piping (| or ^) that has survived into modern shells. You can also find support for invoking sequential commands (with ;) and asynchronous commands (with &)."[15] It also incorporated a goto command.

1973
[edit]

UNIX, originally written by Ken Thompson, Dennis Ritchie, and Brian Kernighan among others, was released by AT&T (wikipedia UNIX page).

1977
[edit]

The American National Standard Code for Information Interchange, or "ASCII," is published by the National Institute of Science and Technology, or "NIST,"as FIPS PUB 1-2.[17] The ASCII character set is still with us today as a core component of writing portable shell scripts.

"The Bourne shell was introduced.... Created by Stephen Bourne at AT&T Bell Labs for V7 UNIX, [it] remains a useful shell today (in some cases, as the default root shell)." "Bourne introduced control flows, loops, and variables into scripts, providing a more functional language to interact with the operating system (both interactively and noninteractively). The shell also permitted you to use shell scripts as filters, providing integrated support for handling signals, but lacked the ability to define functions. Finally, it incorporated a number of features we use today, including command substitution (using back quotes) and HERE documents to embed preserved string literals within a script."[15] It used the -eq, -ne, -lt style of test operators

The Korn Shell was introduced at around the same time as was the Bourne shell. It provides some features borrowed from Python and Ruby, such as associative arrays and floating point arithmetic, and aims to support the new POSIX standard.[15] Its features include the -ne test operator and `[...]` testing syntax, a "for ... in" command, `$((...))` arithmetic syntax, familiar positional parameter syntax, command substitution, and an alias command.

OpenVMS - Initial Release.[18] It included Bash at some later point.

1978
[edit]

C shell - Initial release. Created by Bill Joy while he was at Berkeley, and released with 2BSD. "A useful feature introduced by Bill Joy in the C shell was command history. This feature maintained a history of the previously executed commands and allowed the user to review and easily select previous commands to execute. For example, typing the command history would show the previously executed commands. The up and down arrow keys could be used to select a command, or the previous command could be executed using !!. It's also possible to refer to arguments of the prior command; for example, !* refers to all arguments of the prior command, where !$ refers to the last argument of the prior command."[15] "csh, tcsh, zsh, ash, and scsh are all released under the BSD or a BSD-like license."

1983
[edit]

The TENEX C shell "introduced file name and command completion in addition to command-line editing features. The tcsh was developed by Ken Greer at Carnegie Mellon University."[15] The shebang, or hashbang symbol was available in tcsh. Also, positional parameters as the argv array including argv[1], the $0 shell variable as argv[0], the Count of Indices parameter expansion $#var, the -d and -x operators of a testing syntax regarding directory and executability tests, respectively, the ! negate symbol, a looping construct in the foreach command, the set, echo and exit commands, variable assignment and arithmetic contexts "@ count = $count + 1", and familiar double quoting rules.

Novell NetWare - Initial release. It included Bash at some later point.

1984
[edit]

"The IEEE POSIX work started in 1984 as an outgrowth of work initiated in the /usr/group organization to build a standard on the two variations of UNIX at the time - version 6 and BSD (Berkeley)."[19]

1986
[edit]

The documents which would become known as "POSIX" started out as a trial use standard by the IEEE. By some it is considered a de facto standard.[20]

1988
[edit]

January 10, 1988 -- Brian Fox began coding Bash[21] after Richard Stallman became dissatisfied with the lack of progress being made by a prior developer.[7] Stallman and the FSF considered a free shell that could run existing shell scripts so strategic to a completely free system built from BSD and GNU code that this was one of the few projects they funded themselves. Fox undertook the work as an employee of FSF.[7][22]

"The first version of the IEEE Std 1003 was published in 1988 with the reference 'IEEE IX'," but these standards would not specify requirements for a "command interpreter," or "Shell and Utilities," until later. "At the suggestion of Richard Stallman, this was changed to POSIX for 'portable operating system interface'."[19][23] The POSIX "interface enables application writers to write portable applications -- it was developed with that goal in mind."[24]

1989
[edit]

May 30, 1989, Kenneth Almquist's ash shell - Initial release.[25]

June 8, 1989, Fox released Bash as a beta, version 0.99.[9]. The license was GPL-1.0-or-later. "In addition to supporting backward-compatibility for scripting, Bash has incorporated features from the Korn and C shells. You'll find command history, command-line editing, a directory stack (pushd and popd), many useful environment variables, command completion, and more."[15] Eventually it supported "regular expressions (similar to Perl), and associative arrays."

Microsoft/IBM DOS via the DJGPP project - Initial release.

1992
[edit]

POSIX.2: Shell and Utilities (IEEE Std 1003.2-1992) was published.

Brian Fox remained the primary maintainer until sometime between mid-1992[26] and mid-1994.[27][28] His responsibility was then transitioned to another early contributor, Chet Ramey.[29][30][31][32][33] Since then, Bash has become the most popular default interactive shell among the major GNU/Linux distributions, such as Fedora, Debian, and openSUSE, as well as among their derivatives and competitors.[34][35]

1992
[edit]

"The first eight entries in (POSIX) Portable Character Set are defined in the ISO/IEC 6429:1992 standard." They are null, alert, backspace, tab, carriage-return, newline, vertical-tab and form-feed.[36]

1994
[edit]

January 26, 1994 -- Debian - initial release. Bash is the default interactive and non-interactive shell.[37]

1995
[edit]

Cygwin - Initial release.

BeOS - Initial release.[38][39]

1996
[edit]

December 31, 1996 -- Chet Ramey released bash 2.0. The license was GPL-2.0-or-later.

1997
[edit]

June 5, 1997 -- Bash 2.01 is released.

Almquist shell, ash, ported from NetBSD to Debian by Herbert Xu.

1998
[edit]

April 18, 1998 -- Bash 2.02 is released.

MinGW (32-bit) - Initial release.

A group of Standards Committees from the IEEE, the Open Group and the ISO/IEC began working on the Single UNIX Specification v 3; they together became known as the Austin Group. A Technical Standard for Shell and Utilities was created in The Open Group Base Specifications, Issue 6, which is itself a part of the Single UNIX Specification v 3.[40] A focus of their work was to "collect into a single document" practices which had been proven to work in industry and academia while making "minimal changes to existing application code."[24]

1999
[edit]

February 19, 1999 -- Bash 2.03 is released.

2000
[edit]

March 21, 2000 -- Bash 2.04 is released.

The Korn shell is released as open source under the Common Public License.

"The rest of the characters" in the POSIX Portable Character Set "are defined in the ISO/IEC 10646-1:2000 standard." They comprise the remainder of the characters on a U.S. qwerty keyboard from <space> to <tilde>.[36]

BeOS - Final release

Darwin OS - Initial release. Bash is one of the available shells.[15]

September 14, 2000 -- Bug-bash mailing list exists.[41]

2001
[edit]

April 9, 2001 -- Bash 2.05 released.[42]

A POSIX-2001 Standard is published which includes a "Commands and Utilities" section. The Austin Group and the Single Unix Specification is involved.[40]

2002
[edit]

September 2002 -- In Debian, version 0.4.1 of ash was renamed to dash.

2003
[edit]

Bash became the default shell on Apple's operating systems (ie, MacOS) from OS X 10.3 Panther[43][44]. It was available on OS X 10.2 Jaguar as well where the default shell was tcsh.

A POSIX-2003 Shell and Utilities standard is published by the IEEE. "This is a component product standard for the mandatory shell and utilities related functionality;" a POSIX Certification Program exists.[45]

2004
[edit]

July 27, 2004 -- Bash 3.0 is released.[46]

POSIX-2004 is published.[47]

2005
[edit]

December 9, 2005 -- Bash 3.1 is released.[48]

Mingw-w64 -- Initial release.

2006
[edit]

October 12, 2006 -- Bash 3.2 released.[49] The license was GPL-2.0-or-later.

Ubuntu adopts dash as its default shell.

2008
[edit]

POSIX-2008 is released by the IEEE. "This standard defines a standard source level interface to the shell and utility functionality required by application programs, including shell scripts."[45]

2009
[edit]

February 20, 2009 -- Bash 4.0 is released.[50] Its license is GPL-3.0-or-later.

Novell Netware - final release

September 14, 2009 -- Haiku (operating system) - Initial release.[51] "Haiku's interface to the shell, by default," is bash.[52] As of September 13, 2024, Haiku remains in beta.[53]

2011
[edit]

Januaru 2, 2010 -- Bash 4.1 is released.[54]

February 6, 2011 -- Debian Lenny is released with Bash as its default interactive shell, and dash as its default non-interactive shell.[37] "Dash lacks many of the features one would expect in an interactive shell, which allows it to be faster and more memory efficient than Bash."

February 14, 2011 -- Bash 4.2 is released.[55]

2012
[edit]

On Solaris 11, "the default user shell is the Bourne-again (bash) shell."[56]

2013
[edit]

POSIX-2013 is released by the IEEE.[57]

2014
[edit]

February 27, 2014 -- Bash 4.3 is released.[58]

8 September 2014 -- Shellshock (software bug).[59] Patches to fix the bugs were made available soon after the bugs were identified.[60]

2015
[edit]

Termux and other terminal emulation applications provide availability of Bash on Android.

2016
[edit]

April 26, 2016 -- Windows 10 Insider Preview Build 14332 supports installation of Bash on Ubuntu in the newly released Windows Subsystem for Linux.[61][62]

[63][64]

POSIX-2016 is released by the IEEE.[65]

September 15, 2016 -- Bash 4.4 is released.

2017
[edit]

A new version of the POSIX Standard is released.[45]

Some other current operating systems which carry Bash include and ArcaOS.[66]

2018
[edit]

January 31, 2018 -- The IEEE published the POSIX 2017 Standard.[67]

Apple packaged Bash as their default interactive shell through until macOS Mojave (c.2018). However, for explicit licensing reasons with Catalina[68] (c.2019), Apple replaced its default shell, Bash version 3.2 (c.2006), with Z Shell version 5.7 (c.2019).[69][70] "The bash binary bundled with macOS has been stuck on version 3.2 for a long time now. bash v4 was released in 2009 and bash v5 in January 2019. The reason Apple has not switched to these newer versions is that they are licensed with GPL v3. bash v3 is still GPL v2."[68] Zsh uses a more permissive license.[71]

2019
[edit]

January 7, 2019 -- Bash 5.0 is released.[72]

2020
[edit]

With release 2020.4, Kali Linux switched to zsh as its default shell for desktop images, but its ARM, containers, NetHunter and WSL images still use Bash.[73]

December 7, 2020 -- Bash 5.1 is released.[74]

2022
[edit]

September 26, 2022 -- Bash 5.2 is released.[75]

"At this point, 2022, a significant number of POSIX compatible or influenced systems exist in servers, cloud computing centers, high performance computers, Apple systems (initially BSD variations), and many cell phone systems. The number of devices measuring into the billions."[19]

2023
[edit]

September 18, 2023 -- Windows Subsystem for Linux v 2.0.0 is released for Windows 11. [76][77]

2024
[edit]

June 14, 2024 -- POSIX-2024 is published by the IEEE.

Features

[edit]

List of Short Descriptions

[edit]

As a command processor, Bash operates within a text window where users input commands to execute various tasks. It also supports the execution of commands from files, known as shell scripts, facilitating automation. In keeping with Unix shell conventions, Bash incorporates a rich set of features, including:

  • A User Manual provided by the GNU Project, also available at info bash, and a technical manual available at man bash.
  • Invocation as a...
    • Interactive shell,
    • Non-interactive shell, or
    • Login shell;
  • A command-line interface;
  • Exit status codes;
  • Control structures for
    • Condition testing,
      • if, case, select,
      • logical AND (&&) and OR (||), and
    • Iteration:
      • for, while, until loops, and
      • Arithmetic C-style loop: for ((;
  • Syntaxes for Boolean testing of file attributes, string and integer values, etc.:
    • Traditional test command,
    • Traditional single bracket test: [,
    • Modern double bracket test: [[ ... ]], which includes advanced features:
  • UNIX-style pipelines: |;
  • Subshells: ( ... );
  • Signaling as a means of inter-process communication using the trap builtin;
  • Asynchronous execution, i.e., Jobs and job control:
    • job_spec & where job_spec can be one of:
      • A full commandline: <command_name> <options> <operands> <arguments> &, or
      • A job control identifier as denoted by a leading percent symbol: %1 &;
  • A shell portability mode where command lines can be interpreted in conformance with the POSIX standard;
  • Command parsing:
    • Comments are ignored:
      • Bourne-style # hashtag comments, and
      • Thompson-style : colon comments;
    • Commands are parsed one line at a time:
      • Control structures are honored, and
      • Backslash \ escapes are also honored at the ends of lines;
    • Split into words (i.e., word splitting) according to quoting rules,
      • Including ANSI-C quoting $'...';
    • Seven kinds of expansions are performed in the following order on the resulting string:
      • (Step 1) Brace expansion kernel{-headers},
      • (Step 2) Tilde expansion ~,
      • (Step 3) In a left-to-right fashion:
        • Parameter and variable expansion $foo or ${bar}, including
          • Dynamically scoped variables,
          • Indexed arrays of unlimited size,
          • Associative arrays via declare -A, and
          • Expansion syntaxes which can perform some tasks more quickly than external utilities, including, among others:
            • Pattern Substitution
              • ${foo//x/y} for sed 's/x/y/g',
            • Remove Matching Prefix or Suffix Pattern
              • ${bar##[a-zA-Z0-9]*} for cut -c8-,
            • Print Array Keys
              • ${!array[@]}, and
            • Display Error if Null or Unset
              • ${var:?error message},
        • Command substitution: $( ... ),
        • Process substitution, <() or >(), when a system supports it:
        • Arithmetic expansion, (( ... )) or $(( ... )), including
      • (Step 4) Word splitting (again),
      • (Step 5) Pathname expansion, i.e., shell-style globbing and pattern matching using *, ?, [...], and
        • (Although they can be used in conjunction, the use of brackets in pattern matching, [...], and the use of brackets in the testing commands, [ and [[ ... ]], are each one different things.)
      • Quote removal;
    • Redirections of Standard Input, Standard Output and Standard Error data streams are performed, including
      • File writing, >, and appending, >>,
      • Here documents, <<,
      • Here strings, <<<, which allow parameters to be used as input, and
      • A redirection operator, >|, which can force overwriting of a file when a shell's "noclobber" setting is enabled;
    • Command name lookup is performed, in the following order:
    • The resulting string is executed as a command.

Bash also offers...

General Discussion

[edit]

The Bash command syntax is a superset of the Bourne shell command syntax. Bash supports brace expansion,[79] command line completion (Programmable Completion),[80] basic debugging[81][82] and signal handling (using trap) since bash 2.05a[83][84] among other features. Bash can execute the vast majority of Bourne shell scripts without modification, with the exception of Bourne shell scripts stumbling into fringe syntax behavior interpreted differently in Bash or attempting to run a system command matching a newer Bash builtin, etc. Bash command syntax includes ideas drawn from the Korn Shell (ksh) and the C shell (csh) such as command line editing, command history (history command),[85] the directory stack, the $RANDOM and $PPID variables, and POSIX command substitution syntax $(...).

When a user presses the tab key within an interactive command-shell, Bash automatically uses command line completion, since beta version 2.04,[86] to match partly typed program names, filenames and variable names. The Bash command-line completion system is very flexible and customizable, and is often packaged with functions that complete arguments and filenames for specific programs and tasks.

Bash's syntax has many extensions lacking in the Bourne shell. Bash can perform integer calculations ("arithmetic evaluation") without spawning external processes. It uses the ((...)) command and the $((...)) variable syntax for this purpose. Its syntax simplifies I/O redirection. For example, it can redirect standard output (stdout) and standard error (stderr) at the same time using the &> operator. This is simpler to type than the Bourne shell equivalent 'command > file 2>&1'. Bash supports process substitution using the <(command) and >(command)syntax, which substitutes the output of (or input to) a command where a filename is normally used. (This is implemented through /proc/fd/ unnamed pipes on systems that support that, or via temporary named pipes where necessary).

When using the 'function' keyword, Bash function declarations are not compatible with Bourne/Korn/POSIX scripts (the KornShell has the same problem when using 'function'), but Bash accepts the same function declaration syntax as the Bourne and Korn shells, and is POSIX-conformant. Because of these and other differences, Bash shell scripts are rarely runnable under the Bourne or Korn shell interpreters unless deliberately written with that compatibility in mind, which is becoming less common as Linux becomes more widespread. But in POSIX mode, Bash conforms with POSIX more closely.[87]

Bash supports here documents. Since version 2.05b Bash can redirect standard input (stdin) from a "here string" using the <<< operator.

Bash 3.0 supports in-process regular expression matching using a syntax reminiscent of Perl.[88]

In February 2009,[89] Bash 4.0 introduced support for associative arrays.[90] Associative array indices are strings, in a manner similar to AWK or Tcl.[91] They can be used to emulate multidimensional arrays. Bash 4 also switches its license to GPL-3.0-or-later.[92]

Brace expansion

[edit]

Brace expansion, also called alternation, is a feature copied from the C shell. It generates a set of alternative combinations. Generated results need not exist as files. The results of each expanded string are not sorted and left to right order is preserved:

$ echo a{p,c,d,b}e
ape ace ade abe
$ echo {a,b,c}{d,e,f}
ad ae af bd be bf cd ce cf

Users should not use brace expansions in portable shell scripts, because the Bourne shell does not produce the same output.

$ # bash shell
$/bin/bash -c 'echo a{p,c,d,b}e'
ape ace ade abe
$ # A traditional shell does not produce the same output
$ /bin/sh -c 'echo a{p,c,d,b}e'
a{p,c,d,b}e

When brace expansion is combined with wildcards, the braces are expanded first, and then the resulting wildcards are substituted normally. Hence, a listing of JPEG and PNG images in the current directory could be obtained using:

ls *.{jpg,jpeg,png}    # expands to *.jpg *.jpeg *.png - after which,
                       # the wildcards are processed
echo *.{png,jp{e,}g}   # echo just shows the expansions -
                       # and braces in braces are possible.

In addition to alternation, brace expansion can be used for sequential ranges between two integers or characters separated by double dots. Newer versions of Bash allow a third integer to specify the increment.

$ echo {1..10}
1 2 3 4 5 6 7 8 9 10
$ echo {01..10}
01 02 03 04 05 06 07 08 09 10
$ echo file{1..4}.txt
file1.txt file2.txt file3.txt file4.txt
$ echo {a..e}
a b c d e
$ echo {1..10..3}
1 4 7 10
$ echo {a..j..3}
a d g j

When brace expansion is combined with variable expansion (A.K.A. parameter expansion and parameter substitution) the variable expansion is performed after the brace expansion, which in some cases may necessitate the use of the eval built-in, thus:

$ start=1; end=10
$ echo {$start..$end} # fails to expand due to the evaluation order
{1..10}
$ eval echo {$start..$end} # variable expansion occurs then resulting string is evaluated
1 2 3 4 5 6 7 8 9 10

Startup scripts

[edit]

When Bash starts, it executes the commands in a variety of dot files. Unlike Bash shell scripts, dot files do typically have neither the execute permission enabled nor an interpreter directive like #!/bin/bash.

Legacy-compatible Bash startup example

[edit]

The example ~/.bash_profile below is compatible with the Bourne shell and gives semantics similar to csh for the ~/.bashrc and ~/.bash_login. The [ -r filename ] && cmd is a short-circuit evaluation that tests if filename exists and is readable, skipping the part after the && if it is not.

[ -r ~/.profile ] && . ~/.profile             # set up environment, once, Bourne-sh syntax only
if [ -n "$PS1" ] ; then                       # are we interactive?
   [ -r ~/.bashrc     ] && . ~/.bashrc        # tty/prompt/function setup for interactive shells
   [ -r ~/.bash_login ] && . ~/.bash_login    # any at-login tasks for login shell only
fi                                            # End of "if" block

Operating system issues in Bash startup

[edit]

Some versions of Unix and Linux contain Bash system startup scripts, generally under the /etc directory. Bash executes these files as part of its standard initialization, but other startup files can read them in a different order than the documented Bash startup sequence. The default content of the root user's files may also have issues, as well as the skeleton files the system provides to new user accounts upon setup. The startup scripts that launch the X window system may also do surprising things with the user's Bash startup scripts in an attempt to set up user-environment variables before launching the window manager. These issues can often be addressed using a ~/.xsession or ~/.xprofile file to read the ~/.profile — which provides the environment variables that Bash shell windows spawned from the window manager need, such as xterm or Gnome Terminal.

Portability

[edit]

Invoking Bash with the --posix option or stating set -o posix in a script causes Bash to conform very closely with the POSIX 1003.2 standard.[93] Bash shell scripts intended for portability should take into account at least the POSIX shell standard. Some bash features not found in POSIX are:[93][94]

  • Certain extended invocation options
  • Brace expansion
  • Arrays and associative arrays
  • The double bracket [[...]] extended test construct and its regex matching
  • The double-parentheses arithmetic-evaluation construct (only (( ... )); $(( ... )) is POSIX)
  • Certain string-manipulation operations in parameter expansion
  • local for scoped variables
  • Process substitution
  • Bash-specific builtins
  • Coprocesses
  • $EPOCHSECONDS and $EPOCHREALTIME variables[95]

If a piece of code uses such a feature, it is called a "bashism" – a problem for portable use. Debian's checkbashisms and Vidar Holen's shellcheck can be used to make sure that a script does not contain these parts.[96][97] The list varies depending on the actual target shell: Debian's policy allows some extensions in their scripts (as they are in the dash shell),[94] while a script intending to support pre-POSIX Bourne shells, like autoconf's configure, are even more limited in the features they can use.[98]

Keyboard shortcuts

[edit]

Bash uses GNU Readline to provide keyboard shortcuts for command line editing using the default ( Emacs ) key bindings. Vi-bindings can be enabled by running set -o vi.[99]

Process management (Job control)

[edit]

The Bash shell has two modes of execution for commands: batch (asynchronous), and concurrent (synchronous).

To execute commands in batch mode (i.e., in sequence) they must be separated by the character ";", or on separate lines:

command1; command2
command3

In this example, when command1 is finished, command2 is executed, and when command2 has completed, command3 will execute.

A background execution of command1 can occur using (symbol &) at the end of an execution command, and process will be executed in background while immediately returning control to the shell and allowing continued execution of commands.

command1 &

Or to have a concurrent execution of command1 and command2, they must be executed in the Bash shell in the following way:

command1 & command2

In this case command1 is executed in the background & symbol, returning immediately control to the shell that executes command2 in the foreground.

A process can be stopped and control returned to bash by typing Ctrl+z while the process is running in the foreground.[100]

A list of all processes, both in the background and stopped, can be achieved by running jobs:

$ jobs
[1]-  Running                  command1 &
[2]+  Stopped                  command2

In the output, the number in brackets refers to the job id. The plus sign signifies the default process for bg and fg. The text "Running" and "Stopped" refer to the process state. The last string is the command that started the process.

The state of a process can be changed using various commands. The fg command brings a process to the foreground, while bg sets a stopped process running in the background. bg and fg can take a job id as their first argument, to specify the process to act on. Without one, they use the default process, identified by a plus sign in the output of jobs. The kill command can be used to end a process prematurely, by sending it a signal. The job id must be specified after a percent sign:

kill %1

Conditional execution

[edit]

Bash supplies "conditional execution" command separators that make execution of a command contingent on the exit code set by a precedent command. For example:

cd "$SOMEWHERE" && ./do_something || echo "An error occurred" >&2

Where ./do_something is only executed if the cd (change directory) command was "successful" (returned an exit status of zero) and the echo command would only be executed if either the cd or the ./do_something command return an "error" (non-zero exit status).

For all commands the exit status is stored in the special variable $?. Bash also supports if ...;then ...;else ...;fi and case $VARIABLE in $pattern)...;;$other_pattern)...;; esac forms of conditional command evaluation.

Programmable completion

[edit]

Bash supports programmable completion via built-in complete, compopt, and compgen commands.[101] The feature has been available since the beta version of 2.04 released in 2000.[102][103] These commands enable complex and intelligent completion specification for commands (i.e. installed programs), functions, variables, and filenames.[104]

The complete and compopt two commands specify how arguments of some available commands or options are going to be listed in the readline input. As of version 5.1 completion of the command or the option is usually activated by the Tab ↹ keystroke after typing its name.[104]

Documentation

[edit]

As the standard upon which bash is based, the POSIX Standard, or IEEE Std 1003.1,[105] et seq, is especially informative.

The Linux "man page"[106][107] is intended to be the authoritative explanatory technical document for the understanding of how bash operates. It is usually available by running man bash.

The GNU manual is sometimes considered more user-friendly for reading. "You may also find information about Bash by running info bash ... or by looking at /usr/share/doc/bash/, /usr/local/share/doc/bash/, or similar directories on your system. A brief summary is available by running bash --help.[108]"

On modern Linuxes, information on shell built-in commands can be found by executing help, help [built-in name]or man builtins at a terminal prompt where bash is installed. Some commands, such as echo, false, kill, printf, test or true, depending on your system and on your locally installed version of bash, can refer to either a shell built-in or a system binary executable file. When one of these command name collisions occurs, bash will by default execute a given command line using the shell built-in. Specifying a binary executable's absolute path (i.e., /bin/printf) is one way of ensuring that the shell uses a system binary. This name collision issue also effects any "help summaries" viewed with kill --help and /bin/kill --help. Shell built-ins and system binary executable files of the same name often have differing options.

"The project maintainer also has a Bash page which includes Frequently Asked Questions",[109][110][108] this FAQ is current as of bash version 5.1 and is no longer updated.

Security and Vulnerabilities

[edit]

Root Scripts

[edit]

Running any shell scripts as the root user has, for years, been widely criticized as poor security practice. One commonly given reason is that, when a script is executed as root, the negative effects of any bugs in a script would be magnified by root's elevated privileges.

One common example: a script contains the command, rm -rf ${dir}/, but the variable $dir is left undefined. In Linux, if the script was executed by a regular user, the shell would attempt to execute the command rm -rf / as a regular user, and the command would fail. However, if the script was executed by the root user, then the command would likely succeed and the filesystem would be erased.

It is recommended to use sudo on a per-command basis instead.

Debugging

[edit]
Bash features which can be useful during debugging.
Feature POSIX 2024 Description Bash ver.
Grammar type Formal name Syntax
Parameter Expansions Indicate Null or Unset "${parameter:?[word]}" y "Where the expansion of [word], perhaps an error message or a line number, is written to STDERR and the shell exits with a non-zero exit code." ?
Special Parameters Exit Status "$?" y "Expands to the shortest representation of the decimal exit status." ?
Special Parameters PID of Invoked Shell "$$" y "Expands to the shortest representation of the decimal process ID of the invoked shell." ?
Special Built-In Utility set :: xtrace set -x y The shell's primary means of debugging. It "writes to standard error a trace for each command after it expands the command and before it executes it." ?
Special Built-In Utility set :: verbose set -v y "Writes its input to standard error as it is read." ?
Special Built-In Utility set :: pipefail set -o pipefail y "Derive the exit status of a pipeline from the exit statuses of all of the commands in the pipeline, not just the last (rightmost) command." ?
Special Built-In Utility set :: nounset set -u y When enabled, will cause the shell to exit with an error message when it encounters an unset variable expansion. Its use has a number of counter-intuitive pitfalls. ?
Special Built-In Utility set :: errexit set -e y ErrExit, is a setting that, when enabled, will, under certain very specific conditions, cause the shell to exit without an error message whenever the shell receives a non-zero exit code. Its use is somewhat controversial, to the extent that any somewhat obscure computer program can be considered controversial. Adherents claim that ErrExit provides an assurance of verifiability in situations where shell scripts "must not fail." However, opponents claim that its use is unreliable, deceptively simple, highly counter-intuitive, rife with gotchas and pitfalls, and in essence "security theater." Numerous developers of Bash have strongly discouraged the use of this particular setting. ?
Special Built-In Utility trap :: EXIT trap '[arg]' EXIT y "If a [sigspec] (signal specifier) is 0 or EXIT, [arg] is executed when the shell exits." If [arg] contains expansions, then [arg] should be in single quotes. ?
Utility printf printf '<%s>\n' "${var}" y A means of reliably printing the contents of a variable. ?
Bash Variables BASHPID "${BASHPID}" n "Expands to the process ID of the current bash process."[111] ?
Bash Variables BASH_ARGC "${BASH_ARGC[@]}" n "An array variable whose values are the number of parameters in each frame of the current bash execution call stack." ?
Bash Variables BASH_ARGV "${BASH_ARGV[@]}" n "An array variable containing all of the parameters in the current bash execution call stack." ?
Bash Variables BASH_LINENO "${BASH_LINENO[@]}" n "An array variable whose members are the line numbers in source files where each corresponding member of FUNCNAME was invoked." ?
Bash Variables BASH_REMATCH "${BASH_REMATCH[@]}" n "An array variable whose members are assigned by the =~ binary operator to the [[ conditional command." ?
Bash Variables BASH_SOURCE "${BASH_SOURCE}" n "An array variable whose members are the source filenames where the corresponding shell function names in the FUNCNAME array variable are defined." ?
Bash Variables BASH_XTRACEFD "${BASH_XTRACEFD}" n "If set to an integer corresponding to a valid file descriptor, Bash will write the trace output generated when ‘set -x’ is enabled to that file descriptor." ?
Bash Variables EPOCHREALTIME "${EPOCHREALTIME}" n "Each time this parameter is referenced, it expands to the number of seconds since the Unix Epoch (see time(3)) as a floating point value with micro-second granularity." ?
Bash Variables FUNCNAME "${FUNCNAME[@]}" n "An array variable containing the names of all shell functions currently in the execution call stack." ?
Bash Variables LINENO "${LINENO}" n "Each time this parameter is referenced, the shell substitutes a decimal number representing the current sequential line number (starting with 1) within a script or function." ?
Bash Variables PIPESTATUS "${PIPESTATUS[@]}" n "An array variable containing a list of exit status values from the processes in the most-recently-executed foreground pipeline (which may contain only a single command)." ?
Bash Variables PPID "${PPID}" n "The process ID of the shell's parent." ?
Bash Variables PS4 "${PS4}" n "The value of this parameter is expanded as with PS1 and the value is printed before each command bash displays during an execution trace." ?
Shell Builtin set :: restricted set -r n Restricted mode is intended to improve the security of an individual shell instance from a malicious human with physical access to a machine. As threat models have changed, it has become less commonly used now than it once was. ?
Shell Builtin shopt :: extdebug shopt -s extdebug n "Behavior intended for use by debuggers." ?
Shell Builtin trap :: DEBUG trap '[arg]' DEBUG n "If a sigspec is DEBUG, the command arg is executed before" certain kinds of commands. ?
Shell Builtin trap :: ERR trap '[arg]' ERR n "If a sigspec is ERR, the command arg is executed whenever..." certain kinds of commands "return a non-zero exit status," subject to similar restrictions as with ErrExit. ?
Shell Builtin trap :: RETURN trap '[arg]' RETURN n "If a sigspec is RETURN, the command arg is executed each time a shell function or a script executed with the . or source builtins finishes executing." ?



  • Shell features specified by POSIX:
    • Parameter Expansions:[112][113][114]
      • ${parameter:?[word]}: "Indicate Error if Null or Unset, where the expansion of [word], perhaps an error message or a line number, is written to STDERR and the shell exits with a non-zero exit code."
    • Special Parameters:[115][116]
      • $? "Expands to the shortest representation of the decimal exit status."
      • $$ "Expands to the shortest representation of the decimal process ID of the invoked shell."
    • Special Built-In Utility set:[117][118][119]
      • set -x, or XTrace, is the shell's primary means of debugging. It "writes to standard error a trace for each command after it expands the command and before it executes it."
      • set -v, or Verbose mode, "writes its input to standard error as it is read."
      • set -o pipefail: "Derive the exit status of a pipeline from the exit statuses of all of the commands in the pipeline, not just the last (rightmost) command."
      • set -u, or NoUnset, when enabled, will cause the shell to exit with an error message when it encounters an unset variable expansion. Its use has a number of counter-intuitive pitfalls.
      • set -e, or ErrExit, is a setting that, when enabled, will, under certain very specific conditions, cause the shell to exit without an error message whenever the shell receives a non-zero exit code. Its use is somewhat controversial, to the extent that any somewhat obscure computer program can be considered controversial. Adherents claim that ErrExit provides an assurance of verifiability in situations where shell scripts "must not fail." However, opponents claim that its use is unreliable, deceptively simple, highly counter-intuitive, rife with gotchas and pitfalls, and in essence "security theater." Numerous developers of Bash have strongly discouraged the use of this particular setting.
    • Special Built-In Utility trap [-lp] [arg] [sigspec …]: [120][118]:
      • EXIT, : "If a [sigspec] (signal specifier) is 0 or EXIT, [arg] is executed when the shell exits."
    • Utility printf: a means of reliably printing the contents of a variable:
  • Bash features not specified by POSIX:

[123] "Expands to the process ID of the current bash process."

      • ${BASH_ARGC[@]}:[124] "An array variable whose values are the number of parameters in each frame of the current bash execution call stack."
      • ${BASH_ARGV[@]}:[125] "An array variable containing all of the parameters in the current bash execution call stack."
      • ${BASH_LINENO[@]}:[126] "An array variable whose members are the line numbers in source files where each corresponding member of FUNCNAME was invoked."
      • ${BASH_REMATCH[@]}:[127] "An array variable whose members are assigned by the =~ binary operator to the [[ conditional command."
      • $BASH_SOURCE:[128] "An array variable whose members are the source filenames where the corresponding shell function names in the FUNCNAME array variable are defined."
      • $BASH_XTRACEFD:[129] "If set to an integer corresponding to a valid file descriptor, Bash will write the trace output generated when ‘set -x’ is enabled to that file descriptor."
      • $EPOCHREALTIME:[130] "Each time this parameter is referenced, it expands to the number of seconds since the Unix Epoch (see time(3)) as a floating point value with micro-second granularity."
      • ${FUNCNAME[@]}:[131] "An array variable containing the names of all shell functions currently in the execution call stack."
      • $LINENO:[132] "Each time this parameter is referenced, the shell substitutes a decimal number representing the current sequential line number (starting with 1) within a script or function."
      • ${PIPESTATUS[@]}:[133] "An array variable containing a list of exit status values from the processes in the most-recently-executed foreground pipeline (which may contain only a single command)."
      • $PPID:[134] "The process ID of the shell's parent."
      • $PS4:[135] "The value of this parameter is expanded as with PS1 and the value is printed before each command bash displays during an execution trace."
    • Shell Builtin set:[117][118][119]
      • set -r, or Restricted mode, is intended to improve the security of an individual shell instance from a malicious human with physical access to a machine. As threat models have changed, it has become less commonly used now than it once was.
    • Shell Builtin shopt:[136][118]
      • shopt -s extdebug: "Behavior intended for use by debuggers."
    • Shell Builtin trap [-lp] [arg] [sigspec …]:[120][118]: While POSIX does specify certain uses of the trap builtin, the following signal specs are Bash extensions.
      • DEBUG: "If a sigspec is DEBUG, the command arg is executed before" certain kinds of commands.
      • ERR: "If a sigspec is ERR, the command arg is executed whenever..." certain kinds of commands "return a non-zero exit status," subject to similar restrictions as with ErrExit.
      • RETURN: "If a sigspec is RETURN, the command arg is executed each time a shell function or a script executed with the . or source builtins finishes executing."
  • Third party debugging utilities:
    • ShellCheck: Shell script analysis tool;[137][97][138]
    • devscripts-checkbashisms: Check whether a /bin/sh script contains any common bash-specific constructs;[139][96]
    • kcov: Code coverage tool without special compilation options;[140]
    • Bashdb: The Bash symbolic debugger.[141][142]

Examples

[edit]

With the :? parameter expansion, an unset or null variable can halt a script.

  • ex.sh
    #!/bin/bash
    bar="foo is not defined"
    echo "${foo:?$bar}"
    echo this message doesn't print
    
    $ ./ex.sh
    ./ex.sh: line 3: foo: foo is not defined
    

Reliably printing the contents of an array that contains spaces and newlines first in a portable syntax, and then the same thing in Bash. Note that in Bash, the number of spaces before the newline is made clear.

$ # In POSIX shell:
$ array=( "a " " b" " 
>  c " )
$ printf ',%s,\n' "${array[@]}"
,a ,
, b,
, 
 c ,
# In Bash:
declare -p array
declare -a array=([0]="a " [1]=" b" [2]=$' \n c ')

Printing an error message when there's a problem.

  • error.sh
    if ! lsblk | grep sdb
    then
      echo Error, line $LINENO
    fi
    
    $ ./error.sh
    Error, line 130
    

Using xtrace. If errexit had been enabled, then echo quux would not have been executed.

  • test.sh
    #!/bin/bash
    set -x
    foo=bar; echo $foo
    false
    echo quux
    
    $ ./test.sh 
    + foo=bar
    + echo bar
    bar
    + false
    + echo quux
    quux
    

Deprecated syntax

[edit]
  • Back-tick style command substitutions: `...` is deprecated in favor of $(...);
  • Use of -a or -o in test/[/[[ commands,
    • for example, [ -r ./file -a ! -l ./file ] is deprecated in favor of [ -r ./file ] && ! [ -l ./file ];
  • Use of the arithmetic syntax $[...] is deprecated in favor of $((...)) or ((...)), as appropriate;
  • Any uses of expr or let.

Shellshock

[edit]

In September of 2014, a security bug was discovered[143] in the program. It was dubbed "Shellshock." Public disclosure quickly led to a range of attacks across the Internet.[144][145][146]

Exploitation of the vulnerability could enable arbitrary code execution in CGI scripts executable by certain versions of Bash. The bug involved how Bash passed function definitions to subshells through environment variables.[147] The bug had been present in the source code since August 1989 (version 1.03)[148] and was patched in September 2014 (version 4.3).

Patches to fix the bugs were made available soon after the bugs were identified. Upgrading to a current version is strongly advised.

It was assigned the Common Vulnerability identifiers CVE-2014-6271, CVE-2014-6277 and CVE-2014-7169, among others. Under CVSS Metrics 2.x and 3.x, the bug is regarded as "high" and "critical," respectively.

Bug reporting

[edit]

An external command called bashbug reports Bash shell bugs. When the command is invoked, it brings up the user's default editor with a form to fill in. The form is mailed to the Bash maintainers (or optionally to other email addresses).[149][150]

Licensing

[edit]

Since 4.0: GPL-3.0-or-later[151]

1.11? to 3.2: GPL-2.0-or-later[152]

0.99? to 1.05?: GPL-1.0-or-later[153][90][154]

See also

[edit]

Unix Shells

[edit]

References

[edit]
  1. ^ "Index of /gnu/bash". Retrieved 4 December 2024.
  2. ^ "Free Software Foundation — working together for free software — Front Page". fsf.org. Retrieved 19 May 2024. The Free Software Foundation (FSF) is a nonprofit with a worldwide mission to promote computer user freedom.
  3. ^ "GNU in a Nutshell". gnu.org. Retrieved 19 May 2024. The ultimate goal is to provide free software to do all of the jobs computer users want to do—and thus make proprietary software a thing of the past.
  4. ^ "GNU's Bulletin, vol. 1 no. 7, June, 1989 :: GNU's Who". gnu.org. Retrieved 19 May 2024. Brian Fox has now completed GNU's version of sh, called BASH, the `Bourne Again SHell'.
  5. ^ "GNU Software". gnu.org. Retrieved 19 May 2024. GNU is an operating system which is 100% free software.
  6. ^ "Bourne shell". ibm.com. Retrieved 19 May 2024. The Bourne shell is an interactive command interpreter and command programming language.
  7. ^ a b c Richard Stallman (forwarded with comments by Chet Ramey) (10 February 1988). "GNU + BSD = ?". Newsgroupcomp.unix.questions. Usenet: 2362@mandrill.CWRU.Edu. Archived from the original on 28 December 2021. Retrieved 28 December 2021. For a year and a half, the GNU shell was "just about done". The author made repeated promises to deliver what he had done, and never kept them. Finally I could no longer believe he would ever deliver anything. So Foundation staff member Brian Fox is now implementing an imitation of the Bourne shell.
  8. ^ Hamilton, Naomi (30 May 2008), "The A-Z of Programming Languages: BASH/Bourne-Again Shell", Computerworld: 2, archived from the original on 6 July 2011, retrieved 21 March 2011, When Richard Stallman decided to create a full replacement for the then-encumbered Unix systems, he knew that he would eventually have to have replacements for all of the common utilities, especially the standard shell, and those replacements would have to have acceptable licensing. NOTE: Original computerworld.com.au link is dead: see also copies of original material at
  9. ^ a b Brian Fox (forwarded by Leonard H. Tower Jr.) (8 June 1989). "Bash is in beta release!". Newsgroupgnu.announce. Archived from the original on 4 May 2013. Retrieved 28 October 2010.
  10. ^ "I Almost Get a Linux Editor and Compiler". Dr. Dobb's. Archived from the original on 2 March 2021. Retrieved 12 September 2020.
  11. ^ Richard Stallman (12 November 2010). "About the GNU Project". Free Software Foundation. Archived from the original on 24 April 2011. Retrieved 13 March 2011. "Bourne Again Shell" is a play on the name Bourne Shell, which was the usual shell on Unix.
  12. ^ Gattol, Markus (13 March 2011), Bourne-again Shell, archived from the original on 9 March 2011, retrieved 13 March 2011, The name is a pun on the name of the Bourne shell (sh), an early and important Unix shell written by Stephen Bourne and distributed with Version 7 Unix circa 1978, and the concept of being "born again".
  13. ^ Torvalds, Linus Benedict (August 1991). "comp.os.minix". Retrieved 6 September 2009. I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
  14. ^ "Bash FAQ, version 4.14". Archived from the original on September 1, 2018. Retrieved April 9, 2016.
  15. ^ a b c d e f g h i IBM, Linux Shells
  16. ^ a b Louis Pouzin, Multicians, Origin of the Shell
  17. ^ NIST, ASCII Publication, PDF c1977
  18. ^ "Installing the new GNU packages". Archived from the original on 3 October 2020. Retrieved 4 September 2020.
  19. ^ a b c POSIX Impact
  20. ^ Usenix ';login:' Feb 2007
  21. ^ Brian Fox (29 August 1996), shell.c, Free Software Foundation, archived from the original on 28 September 2018, retrieved 1 November 2010, Birthdate: Sunday, January 10th, 1988. Initial author: Brian Fox
  22. ^ Richard Stallman (3 October 2010). "About the GNU Project". Free Software Foundation. Archived from the original on 24 April 2011. Retrieved 21 March 2011. Free Software Foundation employees have written and maintained a number of GNU software packages. Two notable ones are the C library and the shell. ... We funded development of these programs because the GNU Project was not just about tools or a development environment. Our goal was a complete operating system, and these programs were needed for that goal.
  23. ^ stallman.org POSIX
  24. ^ a b POSIX Backgrounder
  25. ^ Mascheck, Ash Variants
  26. ^ len (g...@prep.ai.mit.edu) (20 April 1993). "January 1993 GNU's Bulletin". Newsgroupgnu.announce. Usenet: gnusenet930421bulletin@prep.ai.mit.edu. Archived from the original on 2 March 2021. Retrieved 28 October 2010.
  27. ^ Ramey, Chet (1 August 1994). "Bash - the GNU shell (Reflections and Lessons Learned)". Linux Journal. Archived from the original on 5 December 2008. Retrieved 13 November 2008.
  28. ^ Chet Ramey (31 October 2010), Dates in your Computerworld interview, archived from the original on 20 July 2012, retrieved 31 October 2010
  29. ^ Hamilton, Naomi (30 March 2008). "The A-Z of Programming Languages: BASH/Bourne-Again Shell". Computerworld. Archived from the original on 8 November 2016. Retrieved 1 March 2022.
  30. ^ Ramey, Chet (20 April 2021). "The GNU Bourne-Again Shell". Technology Infrastructure Services. Case Western Reserve University. Retrieved 1 March 2022.
  31. ^ Chet Ramey (12 June 1989). "Bash 0.99 fixes & improvements". Newsgroupgnu.bash.bug. Archived from the original on 10 November 2012. Retrieved 1 November 2010.
  32. ^ Chet Ramey (24 July 1989). "Some bash-1.02 fixes". Newsgroupgnu.bash.bug. Archived from the original on 10 November 2012. Retrieved 30 October 2010.
  33. ^ Brian Fox (2 March 1990). "Availability of bash 1.05". Newsgroupgnu.bash.bug. Archived from the original on 10 November 2012. Retrieved 30 October 2010.
  34. ^ Bresnahan, Christine; Blum, Richard (April 2015). CompTIA Linux+ Powered by Linux Professional Institute Study Guide: Exam LX0-103 and Exam LX0-104 (3rd ed.). John Wiley & Sons, Inc. p. 5. ISBN 978-1-119-02122-3. Archived from the original on 2 March 2021. Retrieved 6 June 2016. In Linux, most users run bash because it is the most popular shell.
  35. ^ Danesh, Arman; Jang, Michael (February 2006). Mastering Linux. John Wiley & Sons, Inc. p. 363. ISBN 978-0-7821-5277-7. Archived from the original on 2 March 2021. Retrieved 6 June 2016. The Bourne Again Shell (bash) is the most common shell installed with Linux distributions.
  36. ^ a b Portable Character Set
  37. ^ a b c Debian, Shell
  38. ^ "A desktop alternative". Forbes.
  39. ^ "Appendix A: Using the BeOS Command Line Shell". testou.free.fr.
  40. ^ a b Single UNIX Specification v 3 - Overview
  41. ^ Bug-bash, oldest email at lists.gnu.org: Re: Line-Edit mode is lost...
  42. ^ Bug-bash, Bash-2.05 available for FTP
  43. ^ [https://www.google.com/books/edition/Essential_Mac_OS_X_Panther_Server_Admini/zrI-U0KWj3cC?hl=en&gbpv=1&dq=bash&pg=PA189&printsec=frontcover Essential Mac OS S Panther Server Adminstration, pg. 189]
  44. ^ Foster-Johnson, Eric; Welch, John C.; Anderson, Micah (April 2005). Beginning Shell Scripting. John Wiley & Sons, Inc. p. 6. ISBN 978-0-7645-9791-6. Archived from the original on 2 March 2021. Retrieved 6 June 2016. Bash is by far the most popular shell and forms the default shell on Linux and Mac OSX systems.
  45. ^ a b c POSIX FAQ v 1.18
  46. ^ Bug-bash, Bash-3.0 available for FTP
  47. ^ POSIX-2004
  48. ^ Bug-bash, Bash-3.1 released
  49. ^ Bug-bash, Bash-3.2 available for FTP
  50. ^ Bug-bash, Bash-4.0 available for FTP
  51. ^ [1]
  52. ^ "Terminal".
  53. ^ [2]
  54. ^ Bug-bash, Bash-4.1 available for FTP
  55. ^ Bug-bash, Bash-4.2 available for FTP
  56. ^ "User Environment Feature Changes". Oracle. Archived from the original on 12 June 2018. Retrieved 8 June 2018.
  57. ^ POSIX-2013
  58. ^ Bug-bash, Bash-4.3 available for FTP
  59. ^ Mitre, CVE-2014-6271
  60. ^ Bug-bash, Bash 3.0 Official Patch 1
  61. ^ [https://blogs.windows.com/windows-insider/2016/04/26/announcing-windows-10-insider-preview-build-14332/ Windows 10 Insider Preview Build 14332]
  62. ^ "How to install Bash shell command-line tool on Windows 10". 28 September 2016. Archived from the original on 20 November 2016. Retrieved 20 November 2016.
  63. ^ "Missing source code - GPL compliance? · Issue #107 · Microsoft/WSL". GitHub. Archived from the original on 24 September 2019. Retrieved 8 July 2016.
  64. ^ "GNU Bash". Softpedia. SoftNews. 23 January 2010. Archived from the original on 21 October 2017. Retrieved 9 April 2016.
  65. ^ POSIX-2016
  66. ^ "Compatibility Subsystems". Archived from the original on 23 September 2020. Retrieved 4 September 2020.
  67. ^ POSIX-2018
  68. ^ a b scriptingosx.com, Moving to Zsh
  69. ^ "Apple Support - Use zsh as the default shell on your Mac". Archived from the original on 2 December 2019. Retrieved 1 July 2019.
  70. ^ Warren, Tom (4 June 2019). "Apple replaces bash with zsh as the default shell in macOS Catalina". The Verge. Archived from the original on 10 June 2019. Retrieved 13 June 2019.
  71. ^ Hughes, Matthew (4 June 2019). "Why does macOS Catalina use Zsh instead of Bash? Licensing". The Next Web. Archived from the original on 31 December 2020. Retrieved 12 January 2021.
  72. ^ Bug-bash, Bash-5.0 release available
  73. ^ Kali Linux 2020.4, zsh by default
  74. ^ Bash-5.1 release available
  75. ^ Bug-bash, Bash-5.2 Release available
  76. ^ Github: WSL 2.0.0
  77. ^ Hoffman, Chris (30 July 2021). "How to Install the Windows Subsystem for Linux on Windows 11". How-To Geek. Retrieved 12 October 2022.
  78. ^ "Command Execution Environment (Bash Reference Manual)". www.gnu.org.
  79. ^ "Brace Expansion (Bash Reference Manual)". www.gnu.org. Archived from the original on 15 March 2018. Retrieved 10 January 2024.
  80. ^ {{ cite web bash.html#Programmable-Completion | title = Bash Reference Manual | url = https://www.gnu.org/software/bash/manual/ }} | website = www.gnu.org
  81. ^ "Debugging Bash scripts". tldp.org. Archived from the original on 4 November 2018. Retrieved 20 November 2018.
  82. ^ "The Set Builtin (Bash Reference Manual)". www.gnu.org. Retrieved 10 January 2024.
  83. ^ "Bash changes [Bash Hackers Wiki (DEV 20200708T2203)]". wiki-dev.bash-hackers.org. Archived from the original on 23 September 2019. Retrieved 23 September 2019.
  84. ^ "Bourne Shell Builtins (Bash Reference Manual)". www.gnu.org. Retrieved 10 January 2024.
  85. ^ "Bash Reference Manual". www.gnu.org. Archived from the original on 15 September 2019. Retrieved 15 September 2019.
  86. ^ "Working more productively with bash 2.x/3.x". www.caliban.org. Archived from the original on 29 June 2018. Retrieved 21 June 2018.
  87. ^ "6.11 Bash POSIX Mode", The GNU Bash Reference Manual, for Bash, Version 4.1, 23 December 2009, archived from the original on 3 December 2010, retrieved 26 October 2010
  88. ^ "Advanced Bash-Scripting Guide". www.tldp.org. Section 37.2 (Bash, version 3). Archived from the original on 5 May 2017. Retrieved 5 March 2017.
  89. ^ "Bash, version 4". tldp.org. Archived from the original on 1 July 2018. Retrieved 25 June 2018.
  90. ^ a b "BashFAQ/061 - Greg's Wiki". mywiki.wooledge.org. Archived from the original on 2 March 2021. Retrieved 1 March 2021.
  91. ^ "Arrays (Bash Reference Manual)". www.gnu.org. Archived from the original on 11 July 2018. Retrieved 4 July 2018.
  92. ^ "macos - Update bash to version 4.0 on OSX". Ask Different. Archived from the original on 25 June 2018. Retrieved 25 June 2018.
  93. ^ a b Mendel Cooper. "Portability Issues". The Linux Documentation Project. ibiblio.org. Archived from the original on 27 January 2012. Retrieved 26 January 2012.
  94. ^ a b "10. Files". Debian Policy Manual v4.5.0.2. Archived from the original on 12 May 2020. Retrieved 11 May 2020.
  95. ^ "How To Format Date And Time In Linux, MacOS, And Bash?". Shell Tips!. Archived from the original on 3 June 2020. Retrieved 3 June 2020.
  96. ^ a b checkbashisms(1) – Linux General Commands Manual
  97. ^ a b shellcheck(1) – Linux General Commands Manual
  98. ^ "Portable Shell". Autoconf. Archived from the original on 2 March 2021. Retrieved 20 January 2020.
  99. ^ "BASH Help - A Bash Tutorial". Hypexr.org. 5 October 2012. Archived from the original on 2 March 2021. Retrieved 21 July 2013.
  100. ^ "Bash Reference Manual". www.gnu.org. Archived from the original on 15 March 2018. Retrieved 27 March 2018.
  101. ^ "Bash Reference Manual". tiswww.case.edu.
  102. ^ "Working more productively with bash 2.x/3.x". www.caliban.org. Archived from the original on 29 June 2018. Retrieved 21 June 2018.
  103. ^ "Index of /gnu/bash". ftp.swin.edu.au. Archived from the original on 8 March 2020. Retrieved 15 September 2019.
  104. ^ a b "An Introduction to Programmable Completion". tldp.org. Retrieved 21 January 2022.
  105. ^ "The Open Group Base Specifications Issue 7, 2018 edition". pubs.opengroup.org.
  106. ^ "BASH(1) Manual Page". tiswww.case.edu.
  107. ^ "bash.0\doc - bash.git - bash". git.savannah.gnu.org.
  108. ^ a b Cite error: The named reference auto was invoked but never defined (see the help page).
  109. ^ "The GNU Bourne-Again Shell". tiswww.case.edu.
  110. ^ "Frequently Asked Questions".
  111. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASHPID GNU Bash Manual, 5.2 Bash Variables: BASHPID]
  112. ^ GNU Bash Manual, 3.5.3 Shell Parameter Expansion
  113. ^ bash(1), Parameter Expansion
  114. ^ POSIX 2024, 2.6.2 Parameter Expansion
  115. ^ GNU Bash Manual, 3.4.2 Special Parameters
  116. ^ POSIX 2024, 2.5.2 Special Parameters
  117. ^ a b GNU Bash Manual, 4.3.1 The Set Builtin
  118. ^ a b c d e bash(1), SHELL BUILTIN COMMANDS
  119. ^ a b POSIX 2024, set
  120. ^ a b GNU Bash Manual, 4.1 Bourne Shell Builtins: trap Cite error: The named reference "GNU Bash Manual, 4.1 Bourne Shell Builtins: trap" was defined multiple times with different content (see the help page).
  121. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html GNU Bash Manual, 5.2 Bash Variables]
  122. ^ [https://tiswww.case.edu/php/chet/bash/bash.html#lbAW bash(1): Shell Variables]
  123. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASHPID GNU Bash Manual, 5.2 Bash Variables: BASHPID]
  124. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fARGC GNU Bash Manual, 5.2 Bash Variables: BASH_ARGC]
  125. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fARGV GNU Bash Manual, 5.2 Bash Variables: BASH_ARGV]
  126. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fLINENO GNU Bash Manual, 5.2 Bash Variables: BASH_LINENO]
  127. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fREMATCH GNU Bash Manual, 5.2 Bash Variables: BASH_REMATCH]
  128. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fSOURCE GNU Bash Manual, 5.2 Bash Variables: BASH_SOURCE]
  129. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-BASH_005fXTRACEFD GNU Bash Manual, 5.2 Bash Variables: BASH_XTRACEFD]
  130. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-EPOCHREALTIME GNU Bash Manual, 5.2 Bash Variables: EPOCHREALTIME]
  131. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-FUNCNAME GNU Bash Manual, 5.2 Bash Variables: FUNCNAME]
  132. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-LINENO GNU Bash Manual, 5.2 Bash Variables: LINENO]
  133. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-PIPESTATUS GNU Bash Manual, 5.2 Bash Variables: PIPESTATUS]
  134. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-PPID GNU Bash Manual, 5.2 Bash Variables: PPID ]
  135. ^ [https://www.gnu.org/software/bash/manual/html_node/Bash-Variables.html#index-PS4 GNU Bash Manual, 5.2 Bash Variables: PS4 ]
  136. ^ [https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html GNU Bash Manual, 4.3.2 The Shopt Builtin]
  137. ^ [https://shellcheck.net ShellCheck: Shell script analysis tool]
  138. ^ Github: shellcheck
  139. ^ [https://packages.debian.org/sid/devscripts Package: devscripts: scripts to make the life of a Debian Package maintainer easier]
  140. ^ [https://simonkagstrom.github.io/kcov Kcov - code coverage]
  141. ^ [https://bashdb.sourceforge.net/bashdb.html Debugging with the BASH debugger]
  142. ^ [https://lists.gnu.org/archive/html/bug-bash/2005-09/msg00038.html Documentation of Project's Homepage: "[Bashdb-devel] Re: [PATCH] fix bashdb script handling of tmp directory"]
  143. ^ Juliana, Cino (10 June 2017). "Linux bash exit status and how to set exit status in bash - Techolac". Archived from the original on 21 June 2019. Retrieved 21 June 2019.
  144. ^ Leyden, John (24 September 2014). "Patch Bash NOW: 'Shell Shock' bug blasts OS X, Linux systems wide open". The Register. Archived from the original on 16 October 2014. Retrieved 25 September 2014.
  145. ^ Perlroth, Nicole (25 September 2014). "Security Experts Expect 'Shellshock' Software Bug in Bash to Be Significant". The New York Times. Archived from the original on 5 April 2019. Retrieved 25 September 2014.
  146. ^ Seltzer, Larry (29 September 2014). "Shellshock makes Heartbleed look insignificant". ZDNet. Archived from the original on 14 May 2016.
  147. ^ Huzaifa Sidhpurwala (24 September 2014). "Bash specially-crafted environment variables code injection attack". Red Hat. Archived from the original on 25 September 2014. Retrieved 25 September 2014.
  148. ^ Chazelas, Stephane (4 October 2014). "oss-sec mailing list archives". Seclists.org. Archived from the original on 6 October 2014. Retrieved 4 October 2014.
  149. ^ bashbug(1) Archived October 2, 2018, at the Wayback Machine, die.net
  150. ^ "Linux / Unix Command: bashbug" Archived October 6, 2014, at the Wayback Machine, apple.com
  151. ^ GNU Project. "README file". Archived from the original on 26 April 2019. Retrieved 16 April 2014. Bash is free software, distributed under the terms of the [GNU] General Public License as published by the Free Software Foundation, version 3 of the License (or any later version).
  152. ^ "bash-1.11". oldlinux.org. Archived from the original on 15 October 2021. Retrieved 9 June 2021. See test.c for GPL-2.0-or-later
  153. ^ "bash-1.05.tar". oldlinux.org.
  154. ^ "Is there a way to download the presumably initial bash source bash-0.99?". unix.stackexchange.com.
  155. ^ Arch Linux, Command-line shell

Further reading

[edit]