Bash

Bash is the shell, or command language interpreter, for the GNU operating system.

What is Bash?

Bash (short for Bourne-Again SHell) is a Unix shell and command language that is commonly used on Linux and macOS systems. It provides a command-line interface for users to interact with the operating system and execute commands.

What can you do with Bash?

With Bash, you can navigate the file system, execute commands, and automate repetitive tasks using scripts. It also provides features such as input/output redirection, piping, and command substitution, which allow you to combine commands and perform complex operations.

Is Bash the only shell available on Unix systems?

No, there are many other shells available on Unix systems, including zsh, csh, and tcsh. However, Bash is one of the most popular and widely used shells due to its versatility and ease of use.

Can you use Bash on Windows?

Yes, you can use Bash on Windows through the Windows Subsystem for Linux (WSL) feature. This allows you to install a Linux distribution on your Windows machine and run Bash commands and scripts natively.

What resources are available to learn Bash?

There are many resources available to learn Bash, including online tutorials, books, and video courses. The Bash documentation, which is included with most Unix systems, provides a comprehensive reference for the language and its features. There are also many community-driven resources, such as forums and blogs, where you can find tips and best practices for using Bash.

Snippet from Wikipedia: Bash (Unix shell)

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

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). 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 sh. Other features, e.g., history, are copied from the csh and the ksh. Bash is a POSIX-compliant shell, but with a number of extensions.

While bash is considered Unix-like, it's also available on MacOS, Windows, BeOS, and Haiku.

Brian Fox began coding Bash on January 10, 1988, after Richard Stallman became dissatisfied with the lack of progress being made by a prior developer. 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, with Fox undertaking the work as an employee of FSF. Fox released Bash as a beta, version .99, on June 8, 1989, and remained the primary maintainer until sometime between mid-1992 and mid-1994, when he was laid off from FSF and his responsibility was transitioned to another early contributor, Chet Ramey.

Since then, Bash has become by far the most popular shell among users of Linux, becoming the default interactive shell on that operating system's various distributions and on Apple's macOS releases before Catalina in October 2019. Bash has also been ported to Microsoft Windows and distributed with Cygwin and MinGW, to DOS by the DJGPP project, to Novell NetWare, to OpenVMS by the GNU project, to ArcaOS, and to Android via various terminal emulation applications.

In September 2014, Stéphane Chazelas, a Unix/Linux specialist, discovered a security bug in the program. The bug, first disclosed on September 24, was named Shellshock and assigned the numbers CVE-2014-6271, CVE-2014-6277 and CVE-2014-7169. The bug was regarded as severe, since CGI scripts using Bash could be vulnerable, enabling arbitrary code execution. The bug was related to how Bash passes function definitions to subshells through environment variables.

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 command-line interface;
  • Control structures for condition-testing and iteration;
  • UNIX-style pipelines;
  • Subshells;
  • Exit status codes;
  • Signaling as a means of inter-process communication;
  • Asynchronous execution;
  • A shell portability mode where commands can be interpreted in conformance with the POSIX standard;
  • Invocation as a...
    • Login shell,
    • Interactive shell, or
    • Non-interactive shell;
  • Command parsing:
    • Commands are parsed one line at a time,
    • Split into words according to quoting rules,
      • Including ANSI-C quoting, and
    • Comments are ignored.
  • A series of expansions are performed on the resulting string:
    • Brace expansion,
    • Tilde expansion,
    • Parameter and variable expansion, including
      • Dynamically scoped variables,
      • Indexed arrays of unlimited size, and
      • Associative arrays,
    • Command substitution,
    • Process substitution,
    • Arithmetic expansion, including
      • Integer arithmetic in any base from two to sixty-four,
    • Word splitting (again),
    • Pathname expansion,
      • I.e., globbing and pattern matching, and
    • Quote removal;
  • Redirections of inputs, outputs and error data streams are performed, including here documents and here strings;
  • Command name lookup is performed, in the following order:
    • Commands internal to the shell:
      • Aliases,
      • Shell reserved words,
      • Functions, and
      • built-in commands;
    • Commands external to the shell:
      • Separate UNIX-style programs such as ls or ln, and
      • Shell scripts, which are files containing executable commands. (Shell scripts do not require compilation before execution and, when certain requirements are met, can be invoked as commands by using their filename.)
  • The resulting string is executed as a command.

Bash also offers...

  • Configurable execution environment(s):
    • Shell and session startup files such as '~/.bashrc' and ‘~/.profile’ (i.e., dotfiles);
  • Settings (set built-in) and shell options (shopt built-in) which alter shell behavior;
  • With interactive invocation only,
    • Unlimited size command history,
    • Jobs and job control,
    • A directory stack (see pushd and popd built-ins),
    • Tab completion,
    • Configurable prompts, and
    • Command line editing with GNU readline;
  • Lightweight logging for debugging purposes (xtrace), and other lightweight debugging options (errexit, noexec, nounset, pipefail, etc.);
  • Shell compatibility modes: bash 5.1 can operate as if it were bash 4.2, etc.;
  • Documentation:
    • A built-in help command,
    • A man page, and
    • An info page which is the same as the GNU manual;
  • Informal avenues of support via:
    • IRC at libera.chat #bash
    • Mailing lists at https://www.gnu.org/software/bash/


The keywords, syntax, dynamically scoped variables and other basic features of the language are all copied from sh. Other features, e.g., history, are copied from csh and ksh.

The Bash command syntax is a superset of the Bourne shell command syntax. Bash supports brace expansion, command line completion (Programmable Completion), basic debugging and signal handling (using trap) since bash 2.05a 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), 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, 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.

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.

In February 2009, Bash 4.0 introduced support for associative arrays. Associative array indices are strings, in a manner similar to AWK or Tcl. They can be used to emulate multidimensional arrays. Bash 4 also switches its license to GPL-3.0-or-later; some users suspect this licensing change is why MacOS continues to use older versions. Apple finally stopped using Bash in its operating systems as default shell with the release of MacOS Catalina in 2019.

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:

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

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:

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.

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:

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.

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.

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.

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

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. 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), while a script intending to support pre-POSIX Bourne shells, like autoconf's configure, are even more limited in the features they can use.

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.

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:

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 returning immediately control to the shell and allowing continued execution of commands.

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

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.

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

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:

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

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.

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).

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

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.

The program's name is a figure of speech or witticism which begins with an homage to Stephen Bourne, the creator of one of the shell programs which have sometimes been considered superseded by the bash shell. His name is used as a pun on the image of childbirth. With that pun, it would seem, is added an allusion: possibly to the Hindu or Buddhist idea of reincarnation; possibly to the Christian idiom known as "being born again;" or quite possibly just to the more abstract idea of renewal. While numerous English translations of the Christian New Testament, Book of John, chapter 3 do contain the words "born again," Merriam-Webster's dictionary has "born-again" defined as a "...person who has made a renewed or confirmed commitment...." Whatever the original touchstone may have been, in the end the program received the name, "the Bourne Again SHell."

The acronym of that name then is "bash," a word meaning "to strike violently." In the context of computer programming, to "violently hit something," such as a computer keyboard, could be considered a hyperbolic image of some frustration. Such imagery of negative emotionality could be seen as standing in direct juxtaposition to the idea of becoming "born again."

The naming could be considered an instance of verbal irony or accidental innuendo. Bash grammar was initially based on the grammars of the most popular Unix shell programs then currently in use, some of which were considered particularly difficult to use or frustrating at that time. As the years progressed, bash development has made its grammar more user-friendly, so much so that it seems likely that the bash project has been committed to improving its usablilty. Since then, bash has become the de facto default shell program in most Linux and Unix operating systems.

As the standard upon which bash is based, the POSIX, or IEEE Std 1003.1, et seq, is informative.

The Linux man page is intended to be the authoritative explanatory document for the understanding of how bash operates, while 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."

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", this FAQ is current as of bash version 5.1 and is no longer updated.

A security hole in Bash dating from version 1.03 (August 1989), dubbed Shellshock, was discovered in early September 2014 and quickly led to a range of attacks across the Internet. Patches to fix the bugs were made available soon after the bugs were identified.

Since 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

A version is also available for Windows 10 and Windows 11 via the Windows Subsystem for Linux. It is also the default user shell in Solaris 11. Bash was also the default shell in BeOS, and in versions of Apple macOS from 10.3 (originally, the default shell was tcsh) to 10.15 (macOS Catalina), which changed the default shell to zsh, although Bash remains available as an alternative shell.

  • Comparison of command shells
  • Stephenson, Neal (2003). In the Beginning... Was the Command Line. HarperCollins. ISBN 978-0380815937.
  • "Evolution of shells in Linux". ibm.com. Retrieved 19 May 2024.
  • "Scripting Reference :: Scripting with the Bourne-Again Shell (Bash)". berkeley.edu. Retrieved 19 May 2024.
  • "IRIS :: Instructional & Research Information Systems :: FAQ: Unix :: About UNIX Shells". berkeley.edu. Retrieved 19 May 2024.

GitHub Topics

Bash (Bourne Again Shell) is a shell and command language interpreter for the GNU operating system. It is meant to be an improved version of Bourne Shell.

  • tools/bash.txt
  • Last modified: 2023/03/25 18:22
  • by Henrik Yllemo