fbpx
Wikipedia

Bash (Unix shell)

Bash is a Unix shell and command language written by Brian Fox for the GNU Project as a free software replacement for the Bourne shell.[15][16] The shell's name is an acronym for Bourne-Again SHell, a pun on the name of the Bourne shell that it replaces[17] and the notion of being "born again".[18][19] First released in 1989,[20] it has been used as the default login shell for most Linux distributions and it was one of the first programs Linus Torvalds ported to Linux, alongside GCC.[21] It is available on nearly all modern operating systems.

Bash
Screenshot of a Bash session
Original author(s)Brian Fox
Developer(s)Chet Ramey[1][2]
Initial releaseJune 8, 1989; 34 years ago (1989-06-08)
Stable release
5.2.21[3]  / 9 November 2023
Repository
  • git.savannah.gnu.org/cgit/bash.git
Written inC
Operating system
PlatformGNU
Available inMultilingual (gettext)
TypeUnix shell, command language
LicenseSince 4.0: GPL-3.0-or-later[10]
1.11? to 3.2: GPL-2.0-or-later[11]
0.99? to 1.05?: GPL-1.0-or-later[12][13][14]
Websitewww.gnu.org/software/bash/ 

Bash is a command processor that typically runs in a text window where the user types commands that cause actions. Bash can also read and execute commands from a file, called a shell script. Like most Unix shells, it supports filename globbing (wildcard matching), piping, here documents, command substitution, variables, and control structures for condition-testing and iteration. 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. Bash is a POSIX-compliant shell, but with a number of extensions.

A version is also available for Windows 10 and Windows 11 via the Windows Subsystem for Linux.[22][23] It is also the default user shell in Solaris 11.[24] Bash was also the default shell in BeOS,[7] 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,[25] although Bash remains available as an alternative shell.[26]

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

History edit

Brian Fox began coding Bash on January 10, 1988,[31] after Richard Stallman became dissatisfied with the lack of progress being made by a prior developer.[15] Stallman and the Free Software Foundation (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.[15][32] Fox released Bash as a beta, version .99, on June 8, 1989,[20] and remained the primary maintainer until sometime between mid-1992[33] and mid-1994,[34] when he was laid off from FSF[35] and his responsibility was transitioned to another early contributor, Chet Ramey.[36][37][38]

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[39][40] (although Almquist shell may be the default scripting shell) and on Apple's macOS releases before Catalina in October 2019.[41][42][25] 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 GNV project,[43] to ArcaOS,[44] and to Android via various terminal emulation applications.

In September 2014, Stéphane Chazelas, a Unix/Linux specialist,[45] 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.[46]

Features edit

The Bash command syntax is a superset of the Bourne shell command syntax. Bash supports brace expansion,[47] command line completion (Programmable Completion),[48] basic debugging[49][50] and signal handling (using trap) since bash 2.05a[51][52] 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),[53] 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,[54] 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.[55]

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.[56]

In February 2009,[57] Bash 4.0 introduced support for associative arrays.[13] Associative array indices are strings, in a manner similar to AWK or Tcl.[58] 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.[59] Apple finally stopped using Bash in its operating systems as default shell with the release of MacOS Catalina in 2019.[26]

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

See also: Major Differences From The Bourne Shell

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.[60] Bash shell scripts intended for portability should take into account at least the POSIX shell standard. Some bash features not found in POSIX are:[60][61]

  • 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 [62]

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

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.[66]

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

command1 & 

Or to have a concurrent execution of two 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.[67]

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.

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).[68][69]

Programmable completion edit

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

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.[73]

Program name edit

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, and with that pun is added an allusion to the Christian idiom of being "born again," or possibly the Buddhist idea of reincarnation. Sometimes considered a reference to John 3 of the Christian New Testament, Merriam-Webster has "born-again" defined as "person who has made a renewed ... commitment of faith.[74]" This idiom is then used to name the program: the Bourne Again SHell.[75][76]

The acronym of that name then is "bash," a word meaning "to strike violently.[77]" 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,[78][79][80][81][82][83] 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.

Documentation edit

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.[84]"

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

Release history edit

Version Release date Release notes
bash-5.2.15 2022-12-13 NEWS
bash-5.2 2022-09-26
bash-5.1 2020-12-07 github version history NEWS [13]
bash-5.0 2019-01-07 [86][87][88]
bash-5.0-rc1 2018-12-20
bash-5.0-beta2 2018-11-28
bash-5.0-beta 2018-09-17
bash-5.0-alpha 2018-05-22
bash-4.4 2016-09-15 github version history NEWS v4.4
bash-4.4-rc2 2016-08-22
bash-4.4-rc1 2016-02-24
bash-4.4-beta2 2016-07-11
bash-4.4-beta 2015-10-12
bash-4.3 2014-02-26
bash-4.2 2011-02-13
bash-4.1 2009-12-31
bash-4.0 2009-02-20
bash-4.0-rc1 2009-01-12
bash-3.2 2006-10-11
bash-3.1 2005-12-08
bash-3.0 2004-08-03
bash-2.05b 2002-07-17
bash-2.05a 2001-11-16
bash-2.05 2001-04-09
bash-2.04 2000-03-21
bash-2.03 1999-02-19
bash-2.02 1998-04-18
bash-2.01 1997-06-05
bash-2.0 1996-12-31

See also edit

References edit

  1. ^ Hamilton, Naomi (May 30, 2008). . Computerworld. Archived from the original on November 8, 2016. Retrieved March 1, 2022.
  2. ^ Ramey, Chet (April 20, 2021). "The GNU Bourne-Again Shell". Technology Infrastructure Services. Case Western Reserve University. Retrieved March 1, 2022.
  3. ^ "bash-5.2.21.tar.gz". November 9, 2023. Retrieved November 9, 2023.
  4. ^ . Archived from the original on September 1, 2018. Retrieved April 9, 2016.
  5. ^ "Missing source code - GPL compliance? · Issue #107 · Microsoft/WSL". GitHub. from the original on September 24, 2019. Retrieved July 8, 2016.
  6. ^ "GNU Bash". Softpedia. SoftNews. January 23, 2010. from the original on October 21, 2017. Retrieved April 9, 2016.
  7. ^ a b "A desktop alternative". Forbes.
  8. ^ "Appendix A: Using the BeOS Command Line Shell". testou.free.fr.
  9. ^ "Terminal".
  10. ^ GNU Project. "README file". from the original on April 26, 2019. Retrieved April 16, 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).
  11. ^ "bash-1.11". oldlinux.org. See test.c for GPL-2.0-or-later
  12. ^ "bash-1.05.tar". oldlinux.org.
  13. ^ a b c "BashFAQ/061 - Greg's Wiki". mywiki.wooledge.org. from the original on March 2, 2021. Retrieved March 1, 2021.
  14. ^ "Is there a way to download the presumably initial bash source bash-0.99?". unix.stackexchange.com.
  15. ^ a b c Richard Stallman (forwarded with comments by Chet Ramey) (February 10, 1988). "GNU + BSD = ?". Newsgroup: comp.unix.questions. Usenet: 2362@mandrill.CWRU.Edu. from the original on December 28, 2021. Retrieved December 28, 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.
  16. ^ Hamilton, Naomi (May 30, 2008), , Computerworld: 2, archived from the original on July 6, 2011, retrieved March 21, 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. Original computerworld.com.au link is dead: see also copies of original material at readthedocs.io, computerworld.com.au and the University of South Carolina.
  17. ^ "I Almost Get a Linux Editor and Compiler". Dr. Dobb's. from the original on March 2, 2021. Retrieved September 12, 2020.
  18. ^ Richard Stallman (November 12, 2010). "About the GNU Project". Free Software Foundation. from the original on April 24, 2011. Retrieved March 13, 2011. "Bourne Again Shell" is a play on the name Bourne Shell, which was the usual shell on Unix.
  19. ^ Gattol, Markus (March 13, 2011), , archived from the original on March 9, 2011, retrieved March 13, 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".
  20. ^ a b Brian Fox (forwarded by Leonard H. Tower Jr.) (June 8, 1989). "Bash is in beta release!". Newsgroup: gnu.announce. from the original on May 4, 2013. Retrieved October 28, 2010.
  21. ^ Torvalds, Linus Benedict (August 1991). "comp.os.minix". Retrieved September 6, 2009. I've currently ported bash(1.08) and gcc(1.40), and things seem to work.
  22. ^ "How to install Bash shell command-line tool on Windows 10". September 28, 2016. from the original on November 20, 2016. Retrieved November 20, 2016.
  23. ^ Hoffman, Chris (July 30, 2021). "How to Install the Windows Subsystem for Linux on Windows 11". How-To Geek. Retrieved October 12, 2022.
  24. ^ "User Environment Feature Changes". Oracle. from the original on June 12, 2018. Retrieved June 8, 2018.
  25. ^ a b Warren, Tom (June 4, 2019). "Apple replaces bash with zsh as the default shell in macOS Catalina". The Verge. from the original on June 10, 2019. Retrieved June 13, 2019.
  26. ^ a b Hughes, Matthew (June 4, 2019). "Why does macOS Catalina use Zsh instead of Bash? Licensing". The Next Web. from the original on December 31, 2020. Retrieved January 12, 2021.
  27. ^ Chazelas, Stephane (October 4, 2014). "oss-sec mailing list archives". Seclists.org. from the original on October 6, 2014. Retrieved October 4, 2014.
  28. ^ Leyden, John (September 24, 2014). "Patch Bash NOW: 'Shell Shock' bug blasts OS X, Linux systems wide open". The Register. from the original on October 16, 2014. Retrieved September 25, 2014.
  29. ^ Perlroth, Nicole (September 25, 2014). "Security Experts Expect 'Shellshock' Software Bug in Bash to Be Significant". The New York Times. from the original on April 5, 2019. Retrieved September 25, 2014.
  30. ^ Seltzer, Larry (September 29, 2014). . ZDNet. Archived from the original on May 14, 2016.
  31. ^ Brian Fox (August 29, 1996), shell.c, Free Software Foundation, from the original on September 28, 2018, retrieved November 1, 2010, Birthdate: Sunday, January 10th, 1988. Initial author: Brian Fox
  32. ^ Richard Stallman (October 3, 2010). "About the GNU Project". Free Software Foundation. from the original on April 24, 2011. Retrieved March 21, 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.
  33. ^ len (g...@prep.ai.mit.edu) (April 20, 1993). "January 1993 GNU's Bulletin". Newsgroup: gnu.announce. Usenet: gnusenet930421bulletin@prep.ai.mit.edu. from the original on March 2, 2021. Retrieved October 28, 2010.
  34. ^ Ramey, Chet (August 1, 1994). "Bash - the GNU shell (Reflections and Lessons Learned)". Linux Journal. from the original on December 5, 2008. Retrieved November 13, 2008.
  35. ^ Chet Ramey (October 31, 2010), Dates in your Computerworld interview, from the original on July 20, 2012, retrieved October 31, 2010
  36. ^ Chet Ramey (June 12, 1989). "Bash 0.99 fixes & improvements". Newsgroup: gnu.bash.bug. from the original on November 10, 2012. Retrieved November 1, 2010.
  37. ^ Chet Ramey (July 24, 1989). "Some bash-1.02 fixes". Newsgroup: gnu.bash.bug. from the original on November 10, 2012. Retrieved October 30, 2010.
  38. ^ Brian Fox (March 2, 1990). "Availability of bash 1.05". Newsgroup: gnu.bash.bug. from the original on November 10, 2012. Retrieved October 30, 2010.
  39. ^ 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. from the original on March 2, 2021. Retrieved June 6, 2016. In Linux, most users run bash because it is the most popular shell.
  40. ^ Danesh, Arman; Jang, Michael (February 2006). Mastering Linux. John Wiley & Sons, Inc. p. 363. ISBN 978-0-7821-5277-7. from the original on March 2, 2021. Retrieved June 6, 2016. The Bourne Again Shell (bash) is the most common shell installed with Linux distributions.
  41. ^ 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. from the original on March 2, 2021. Retrieved June 6, 2016. Bash is by far the most popular shell and forms the default shell on Linux and Mac OSX systems.
  42. ^ "Use zsh as the default shell on your Mac - Apple Support". from the original on December 2, 2019. Retrieved July 1, 2019.
  43. ^ "Installing the new GNV packages". from the original on October 3, 2020. Retrieved September 4, 2020.
  44. ^ "Compatibility Subsystems". from the original on September 23, 2020. Retrieved September 4, 2020.
  45. ^ Juliana, Cino (June 10, 2017). "Linux bash exit status and how to set exit status in bash - Techolac". from the original on June 21, 2019. Retrieved June 21, 2019.
  46. ^ Huzaifa Sidhpurwala (September 24, 2014). "Bash specially-crafted environment variables code injection attack". Red Hat. from the original on September 25, 2014. Retrieved September 25, 2014.
  47. ^ "Brace Expansion (Bash Reference Manual)". www.gnu.org. Retrieved January 10, 2024.
  48. ^ "Bash Reference Manual". www.gnu.org. from the original on March 15, 2018. Retrieved March 27, 2018.
  49. ^ "Debugging Bash scripts". tldp.org. from the original on November 4, 2018. Retrieved November 20, 2018.
  50. ^ "The Set Builtin (Bash Reference Manual)". www.gnu.org. Retrieved January 10, 2024.
  51. ^ "Bash changes [Bash Hackers Wiki (DEV 20200708T2203)]". wiki-dev.bash-hackers.org. from the original on September 23, 2019. Retrieved September 23, 2019.
  52. ^ "Bourne Shell Builtins (Bash Reference Manual)". www.gnu.org. Retrieved January 10, 2024.
  53. ^ "Bash Reference Manual". www.gnu.org. from the original on September 15, 2019. Retrieved September 15, 2019.
  54. ^ "Working more productively with bash 2.x/3.x". www.caliban.org. from the original on June 29, 2018. Retrieved June 21, 2018.
  55. ^ "6.11 Bash POSIX Mode", The GNU Bash Reference Manual, for Bash, Version 4.1, December 23, 2009, from the original on December 3, 2010, retrieved October 26, 2010
  56. ^ "Advanced Bash-Scripting Guide". www.tldp.org. Section 37.2 (Bash, version 3). from the original on May 5, 2017. Retrieved March 5, 2017.
  57. ^ "Bash, version 4". tldp.org. from the original on July 1, 2018. Retrieved June 25, 2018.
  58. ^ "Arrays (Bash Reference Manual)". www.gnu.org. from the original on July 11, 2018. Retrieved July 4, 2018.
  59. ^ "macos - Update bash to version 4.0 on OSX". Ask Different. from the original on June 25, 2018. Retrieved June 25, 2018.
  60. ^ a b Mendel Cooper. "Portability Issues". The Linux Documentation Project. ibiblio.org. from the original on January 27, 2012. Retrieved January 26, 2012.
  61. ^ a b "10. Files". Debian Policy Manual v4.5.0.2. from the original on May 12, 2020. Retrieved May 11, 2020.
  62. ^ "How To Format Date And Time In Linux, MacOS, And Bash?". Shell Tips!. from the original on June 3, 2020. Retrieved June 3, 2020.
  63. ^ checkbashisms(1) – Linux General Commands Manual
  64. ^ shellcheck(1) – Linux General Commands Manual
  65. ^ "Portable Shell". Autoconf. from the original on March 2, 2021. Retrieved January 20, 2020.
  66. ^ "BASH Help - A Bash Tutorial". Hypexr.org. October 5, 2012. from the original on March 2, 2021. Retrieved July 21, 2013.
  67. ^ "Bash Reference Manual". www.gnu.org. from the original on March 15, 2018. Retrieved March 27, 2018.
  68. ^ bashbug(1) October 2, 2018, at the Wayback Machine, die.net
  69. ^ "Linux / Unix Command: bashbug" October 6, 2014, at the Wayback Machine, apple.com
  70. ^ "Bash Reference Manual". tiswww.case.edu.
  71. ^ "Working more productively with bash 2.x/3.x". www.caliban.org. from the original on June 29, 2018. Retrieved June 21, 2018.
  72. ^ "Index of /gnu/bash". ftp.swin.edu.au. from the original on March 8, 2020. Retrieved September 15, 2019.
  73. ^ a b "An Introduction to Programmable Completion". tldp.org. Retrieved January 21, 2022.
  74. ^ "Definition of BORN-AGAIN". www.merriam-webster.com. Retrieved January 9, 2024.
  75. ^ "Bash - GNU Project - Free Software Foundation". www.gnu.org. Retrieved January 10, 2024.
  76. ^ "What is Bash? (Bash Reference Manual)". www.gnu.org. Retrieved January 9, 2024.
  77. ^ "Definition of BASH". www.merriam-webster.com. January 5, 2024. Retrieved January 9, 2024.
  78. ^ "BashGuide/Arrays - Greg's Wiki". mywiki.wooledge.org. Retrieved January 10, 2024.
  79. ^ "CommandSubstitution - Greg's Wiki". mywiki.wooledge.org. Retrieved January 10, 2024.
  80. ^ "BashGuide/TestsAndConditionals - Greg's Wiki". mywiki.wooledge.org. Retrieved January 10, 2024.
  81. ^ "CHANGES - bash.git - bash". git.savannah.gnu.org. Retrieved January 10, 2024.
  82. ^ . February 14, 2021. Archived from the original on February 14, 2021. Retrieved January 10, 2024.
  83. ^ . February 11, 2021. Archived from the original on February 11, 2021. Retrieved January 10, 2024.
  84. ^ "Bash - GNU Project - Free Software Foundation". www.gnu.org. Retrieved January 10, 2024.
  85. ^ "Bash - GNU Project - Free Software Foundation". www.gnu.org. Retrieved January 10, 2024.
  86. ^ "github version history NEWS v5.0". GitHub. from the original on May 4, 2022. Retrieved March 1, 2021.
  87. ^ "Bash changes [Bash Hackers Wiki]". from the original on March 18, 2020. Retrieved November 25, 2019.
  88. ^ "Bash-5.0 release available". lists.gnu.org. from the original on November 8, 2020. Retrieved March 1, 2021.

External links edit

  • Official website  
  • Hamilton, Naomi (May 30, 2008). . Computerworld. Archived from the original on November 8, 2016. (interview with GNU Bash's maintainer, Chet Ramey)

bash, unix, shell, bash, unix, shell, command, language, written, brian, project, free, software, replacement, bourne, shell, shell, name, acronym, bourne, again, shell, name, bourne, shell, that, replaces, notion, being, born, again, first, released, 1989, be. Bash is a Unix shell and command language written by Brian Fox for the GNU Project as a free software replacement for the Bourne shell 15 16 The shell s name is an acronym for Bourne Again SHell a pun on the name of the Bourne shell that it replaces 17 and the notion of being born again 18 19 First released in 1989 20 it has been used as the default login shell for most Linux distributions and it was one of the first programs Linus Torvalds ported to Linux alongside GCC 21 It is available on nearly all modern operating systems BashScreenshot of a Bash sessionOriginal author s Brian FoxDeveloper s Chet Ramey 1 2 Initial releaseJune 8 1989 34 years ago 1989 06 08 Stable release5 2 21 3 9 November 2023Repositorygit wbr savannah wbr gnu wbr org wbr cgit wbr bash wbr gitWritten inCOperating systemUnix like 4 macOS GPL 2 0 or later GPL 3 0 or later available through third parties Windows GPL 3 0 or later 5 6 BeOS 7 8 Haiku 9 PlatformGNUAvailable inMultilingual gettext TypeUnix shell command languageLicenseSince 4 0 GPL 3 0 or later 10 1 11 to 3 2 GPL 2 0 or later 11 0 99 to 1 05 GPL 1 0 or later 12 13 14 Websitewww wbr gnu wbr org wbr software wbr bash wbr Bash is a command processor that typically runs in a text window where the user types commands that cause actions Bash can also read and execute commands from a file called a shell script Like most Unix shells it supports filename globbing wildcard matching piping here documents command substitution variables and control structures for condition testing and iteration 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 Bash is a POSIX compliant shell but with a number of extensions A version is also available for Windows 10 and Windows 11 via the Windows Subsystem for Linux 22 23 It is also the default user shell in Solaris 11 24 Bash was also the default shell in BeOS 7 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 25 although Bash remains available as an alternative shell 26 A security hole in Bash dating from version 1 03 August 1989 27 dubbed Shellshock was discovered in early September 2014 and quickly led to a range of attacks across the Internet 28 29 30 Patches to fix the bugs were made available soon after the bugs were identified Contents 1 History 2 Features 2 1 Brace expansion 2 2 Startup scripts 2 2 1 Legacy compatible Bash startup example 2 2 2 Operating system issues in Bash startup 2 3 Portability 2 4 Keyboard shortcuts 2 5 Process management Job control 2 6 Conditional execution 2 7 Bug reporting 2 8 Programmable completion 2 9 Program name 2 10 Documentation 3 Release history 4 See also 5 References 6 External linksHistory editBrian Fox began coding Bash on January 10 1988 31 after Richard Stallman became dissatisfied with the lack of progress being made by a prior developer 15 Stallman and the Free Software Foundation 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 15 32 Fox released Bash as a beta version 99 on June 8 1989 20 and remained the primary maintainer until sometime between mid 1992 33 and mid 1994 34 when he was laid off from FSF 35 and his responsibility was transitioned to another early contributor Chet Ramey 36 37 38 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 39 40 although Almquist shell may be the default scripting shell and on Apple s macOS releases before Catalina in October 2019 41 42 25 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 GNV project 43 to ArcaOS 44 and to Android via various terminal emulation applications In September 2014 Stephane Chazelas a Unix Linux specialist 45 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 46 Features editThe Bash command syntax is a superset of the Bourne shell command syntax Bash supports brace expansion 47 command line completion Programmable Completion 48 basic debugging 49 50 and signal handling using trap since bash 2 05a 51 52 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 53 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 54 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 amp gt operator This is simpler to type than the Bourne shell equivalent command gt file 2 gt amp 1 Bash supports process substitution using the lt command and gt 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 55 Bash supports here documents Since version 2 05b Bash can redirect standard input stdin from a here string using the lt lt lt operator Bash 3 0 supports in process regular expression matching using a syntax reminiscent of Perl 56 In February 2009 57 Bash 4 0 introduced support for associative arrays 13 Associative array indices are strings in a manner similar to AWK or Tcl 58 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 59 Apple finally stopped using Bash in its operating systems as default shell with the release of MacOS Catalina in 2019 26 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 This section contains instructions advice or how to content Please help rewrite the content so that it is more encyclopedic or move it to Wikiversity Wikibooks or Wikivoyage January 2019 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 i filename i amp amp cmd is a short circuit evaluation that tests if filename exists and is readable skipping the part after the amp amp if it is not r profile amp amp profile set up environment once Bourne sh syntax only if n PS1 then are we interactive r bashrc amp amp bashrc tty prompt function setup for interactive shells r bash login amp amp 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 See also Major Differences From The Bourne ShellInvoking 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 60 Bash shell scripts intended for portability should take into account at least the POSIX shell standard Some bash features not found in POSIX are 60 61 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 62 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 63 64 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 61 while a script intending to support pre POSIX Bourne shells like autoconf s configure are even more limited in the features they can use 65 Keyboard shortcuts edit Main article GNU Readline 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 66 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 amp 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 command1 amp Or to have a concurrent execution of two command1 and command2 they must be executed in the Bash shell in the following way command1 amp command2 In this case command1 is executed in the background amp 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 67 A list of all processes both in the background and stopped can be achieved by running jobs jobs 1 Running command1 amp 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 a href Kill command html title Kill command kill a 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 amp amp do something echo An error occurred gt amp 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 span class k if span span class w span span class p span span class k then span span class w span span class p span span class k else span span class w span span class p span span class k fi span and span class k case span span class w span span class nv VARIABLE span span class w span span class k in span span class w span span class nv pattern span span class o span span class p span span class nv other pattern span span class o span span class p span span class w span span class k esac span forms of conditional command evaluation Bug reporting edit bashbug redirects here For the widely reported September 2014 bug found in Bash see Shellshock software bug 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 68 69 Programmable completion edit Bash supports programmable completion via built in complete compopt and compgen commands 70 The feature has been available since the beta version of 2 04 released in 2000 71 72 These commands enable complex and intelligent completion specification for commands i e installed programs functions variables and filenames 73 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 73 Program name edit 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 and with that pun is added an allusion to the Christian idiom of being born again or possibly the Buddhist idea of reincarnation Sometimes considered a reference to John 3 of the Christian New Testament Merriam Webster has born again defined as person who has made a renewed commitment of faith 74 This idiom is then used to name the program the Bourne Again SHell 75 76 The acronym of that name then is bash a word meaning to strike violently 77 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 78 79 80 81 82 83 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 Documentation edit 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 84 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 85 this FAQ is current as of bash version 5 1 and is no longer updated Release history editVersion Release date Release notesbash 5 2 15 2022 12 13 NEWSbash 5 2 2022 09 26bash 5 1 2020 12 07 github version history NEWS 13 bash 5 0 2019 01 07 86 87 88 bash 5 0 rc1 2018 12 20bash 5 0 beta2 2018 11 28bash 5 0 beta 2018 09 17bash 5 0 alpha 2018 05 22bash 4 4 2016 09 15 github version history NEWS v4 4bash 4 4 rc2 2016 08 22bash 4 4 rc1 2016 02 24bash 4 4 beta2 2016 07 11bash 4 4 beta 2015 10 12bash 4 3 2014 02 26bash 4 2 2011 02 13bash 4 1 2009 12 31bash 4 0 2009 02 20bash 4 0 rc1 2009 01 12bash 3 2 2006 10 11bash 3 1 2005 12 08bash 3 0 2004 08 03bash 2 05b 2002 07 17bash 2 05a 2001 11 16bash 2 05 2001 04 09bash 2 04 2000 03 21bash 2 03 1999 02 19bash 2 02 1998 04 18bash 2 01 1997 06 05bash 2 0 1996 12 31See also edit nbsp Free and open source software portalComparison of command shellsReferences edit Hamilton Naomi May 30 2008 The A Z of Programming Languages BASH Bourne Again Shell Computerworld Archived from the original on November 8 2016 Retrieved March 1 2022 Ramey Chet April 20 2021 The GNU Bourne Again Shell Technology Infrastructure Services Case Western Reserve University Retrieved March 1 2022 bash 5 2 21 tar gz November 9 2023 Retrieved November 9 2023 Bash FAQ version 4 14 Archived from the original on September 1 2018 Retrieved April 9 2016 Missing source code GPL compliance Issue 107 Microsoft WSL GitHub Archived from the original on September 24 2019 Retrieved July 8 2016 GNU Bash Softpedia SoftNews January 23 2010 Archived from the original on October 21 2017 Retrieved April 9 2016 a b A desktop alternative Forbes Appendix A Using the BeOS Command Line Shell testou free fr Terminal GNU Project README file Archived from the original on April 26 2019 Retrieved April 16 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 bash 1 11 oldlinux org See test c for GPL 2 0 or later bash 1 05 tar oldlinux org a b c BashFAQ 061 Greg s Wiki mywiki wooledge org Archived from the original on March 2 2021 Retrieved March 1 2021 Is there a way to download the presumably initial bash source bash 0 99 unix stackexchange com a b c Richard Stallman forwarded with comments by Chet Ramey February 10 1988 GNU BSD Newsgroup comp unix questions Usenet 2362 mandrill CWRU Edu Archived from the original on December 28 2021 Retrieved December 28 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 Hamilton Naomi May 30 2008 The A Z of Programming Languages BASH Bourne Again Shell Computerworld 2 archived from the original on July 6 2011 retrieved March 21 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 Original computerworld com au link is dead see also copies of original material at readthedocs io computerworld com au and the University of South Carolina I Almost Get a Linux Editor and Compiler Dr Dobb s Archived from the original on March 2 2021 Retrieved September 12 2020 Richard Stallman November 12 2010 About the GNU Project Free Software Foundation Archived from the original on April 24 2011 Retrieved March 13 2011 Bourne Again Shell is a play on the name Bourne Shell which was the usual shell on Unix Gattol Markus March 13 2011 Bourne again Shell archived from the original on March 9 2011 retrieved March 13 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 a b Brian Fox forwarded by Leonard H Tower Jr June 8 1989 Bash is in beta release Newsgroup gnu announce Archived from the original on May 4 2013 Retrieved October 28 2010 Torvalds Linus Benedict August 1991 comp os minix Retrieved September 6 2009 I ve currently ported bash 1 08 and gcc 1 40 and things seem to work How to install Bash shell command line tool on Windows 10 September 28 2016 Archived from the original on November 20 2016 Retrieved November 20 2016 Hoffman Chris July 30 2021 How to Install the Windows Subsystem for Linux on Windows 11 How To Geek Retrieved October 12 2022 User Environment Feature Changes Oracle Archived from the original on June 12 2018 Retrieved June 8 2018 a b Warren Tom June 4 2019 Apple replaces bash with zsh as the default shell in macOS Catalina The Verge Archived from the original on June 10 2019 Retrieved June 13 2019 a b Hughes Matthew June 4 2019 Why does macOS Catalina use Zsh instead of Bash Licensing The Next Web Archived from the original on December 31 2020 Retrieved January 12 2021 Chazelas Stephane October 4 2014 oss sec mailing list archives Seclists org Archived from the original on October 6 2014 Retrieved October 4 2014 Leyden John September 24 2014 Patch Bash NOW Shell Shock bug blasts OS X Linux systems wide open The Register Archived from the original on October 16 2014 Retrieved September 25 2014 Perlroth Nicole September 25 2014 Security Experts Expect Shellshock Software Bug in Bash to Be Significant The New York Times Archived from the original on April 5 2019 Retrieved September 25 2014 Seltzer Larry September 29 2014 Shellshock makes Heartbleed look insignificant ZDNet Archived from the original on May 14 2016 Brian Fox August 29 1996 shell c Free Software Foundation archived from the original on September 28 2018 retrieved November 1 2010 Birthdate Sunday January 10th 1988 Initial author Brian Fox Richard Stallman October 3 2010 About the GNU Project Free Software Foundation Archived from the original on April 24 2011 Retrieved March 21 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 len g prep ai mit edu April 20 1993 January 1993 GNU s Bulletin Newsgroup gnu announce Usenet gnusenet930421bulletin prep ai mit edu Archived from the original on March 2 2021 Retrieved October 28 2010 Ramey Chet August 1 1994 Bash the GNU shell Reflections and Lessons Learned Linux Journal Archived from the original on December 5 2008 Retrieved November 13 2008 Chet Ramey October 31 2010 Dates in your Computerworld interview archived from the original on July 20 2012 retrieved October 31 2010 Chet Ramey June 12 1989 Bash 0 99 fixes amp improvements Newsgroup gnu bash bug Archived from the original on November 10 2012 Retrieved November 1 2010 Chet Ramey July 24 1989 Some bash 1 02 fixes Newsgroup gnu bash bug Archived from the original on November 10 2012 Retrieved October 30 2010 Brian Fox March 2 1990 Availability of bash 1 05 Newsgroup gnu bash bug Archived from the original on November 10 2012 Retrieved October 30 2010 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 amp Sons Inc p 5 ISBN 978 1 119 02122 3 Archived from the original on March 2 2021 Retrieved June 6 2016 In Linux most users run bash because it is the most popular shell Danesh Arman Jang Michael February 2006 Mastering Linux John Wiley amp Sons Inc p 363 ISBN 978 0 7821 5277 7 Archived from the original on March 2 2021 Retrieved June 6 2016 The Bourne Again Shell bash is the most common shell installed with Linux distributions Foster Johnson Eric Welch John C Anderson Micah April 2005 Beginning Shell Scripting John Wiley amp Sons Inc p 6 ISBN 978 0 7645 9791 6 Archived from the original on March 2 2021 Retrieved June 6 2016 Bash is by far the most popular shell and forms the default shell on Linux and Mac OSX systems Use zsh as the default shell on your Mac Apple Support Archived from the original on December 2 2019 Retrieved July 1 2019 Installing the new GNV packages Archived from the original on October 3 2020 Retrieved September 4 2020 Compatibility Subsystems Archived from the original on September 23 2020 Retrieved September 4 2020 Juliana Cino June 10 2017 Linux bash exit status and how to set exit status in bash Techolac Archived from the original on June 21 2019 Retrieved June 21 2019 Huzaifa Sidhpurwala September 24 2014 Bash specially crafted environment variables code injection attack Red Hat Archived from the original on September 25 2014 Retrieved September 25 2014 Brace Expansion Bash Reference Manual www gnu org Retrieved January 10 2024 Bash Reference Manual www gnu org Archived from the original on March 15 2018 Retrieved March 27 2018 Debugging Bash scripts tldp org Archived from the original on November 4 2018 Retrieved November 20 2018 The Set Builtin Bash Reference Manual www gnu org Retrieved January 10 2024 Bash changes Bash Hackers Wiki DEV 20200708T2203 wiki dev bash hackers org Archived from the original on September 23 2019 Retrieved September 23 2019 Bourne Shell Builtins Bash Reference Manual www gnu org Retrieved January 10 2024 Bash Reference Manual www gnu org Archived from the original on September 15 2019 Retrieved September 15 2019 Working more productively with bash 2 x 3 x www caliban org Archived from the original on June 29 2018 Retrieved June 21 2018 6 11 Bash POSIX Mode The GNU Bash Reference Manual for Bash Version 4 1 December 23 2009 archived from the original on December 3 2010 retrieved October 26 2010 Advanced Bash Scripting Guide www tldp org Section 37 2 Bash version 3 Archived from the original on May 5 2017 Retrieved March 5 2017 Bash version 4 tldp org Archived from the original on July 1 2018 Retrieved June 25 2018 Arrays Bash Reference Manual www gnu org Archived from the original on July 11 2018 Retrieved July 4 2018 macos Update bash to version 4 0 on OSX Ask Different Archived from the original on June 25 2018 Retrieved June 25 2018 a b Mendel Cooper Portability Issues The Linux Documentation Project ibiblio org Archived from the original on January 27 2012 Retrieved January 26 2012 a b 10 Files Debian Policy Manual v4 5 0 2 Archived from the original on May 12 2020 Retrieved May 11 2020 How To Format Date And Time In Linux MacOS And Bash Shell Tips Archived from the original on June 3 2020 Retrieved June 3 2020 checkbashisms 1 Linux General Commands Manual shellcheck 1 Linux General Commands Manual Portable Shell Autoconf Archived from the original on March 2 2021 Retrieved January 20 2020 BASH Help A Bash Tutorial Hypexr org October 5 2012 Archived from the original on March 2 2021 Retrieved July 21 2013 Bash Reference Manual www gnu org Archived from the original on March 15 2018 Retrieved March 27 2018 bashbug 1 Archived October 2 2018 at the Wayback Machine die net Linux Unix Command bashbug Archived October 6 2014 at the Wayback Machine apple com Bash Reference Manual tiswww case edu Working more productively with bash 2 x 3 x www caliban org Archived from the original on June 29 2018 Retrieved June 21 2018 Index of gnu bash ftp swin edu au Archived from the original on March 8 2020 Retrieved September 15 2019 a b An Introduction to Programmable Completion tldp org Retrieved January 21 2022 Definition of BORN AGAIN www merriam webster com Retrieved January 9 2024 Bash GNU Project Free Software Foundation www gnu org Retrieved January 10 2024 What is Bash Bash Reference Manual www gnu org Retrieved January 9 2024 Definition of BASH www merriam webster com January 5 2024 Retrieved January 9 2024 BashGuide Arrays Greg s Wiki mywiki wooledge org Retrieved January 10 2024 CommandSubstitution Greg s Wiki mywiki wooledge org Retrieved January 10 2024 BashGuide TestsAndConditionals Greg s Wiki mywiki wooledge org Retrieved January 10 2024 CHANGES bash git bash git savannah gnu org Retrieved January 10 2024 Bash changes Bash Hackers Wiki February 14 2021 Archived from the original on February 14 2021 Retrieved January 10 2024 Obsolete and deprecated syntax Bash Hackers Wiki February 11 2021 Archived from the original on February 11 2021 Retrieved January 10 2024 Bash GNU Project Free Software Foundation www gnu org Retrieved January 10 2024 Bash GNU Project Free Software Foundation www gnu org Retrieved January 10 2024 github version history NEWS v5 0 GitHub Archived from the original on May 4 2022 Retrieved March 1 2021 Bash changes Bash Hackers Wiki Archived from the original on March 18 2020 Retrieved November 25 2019 Bash 5 0 release available lists gnu org Archived from the original on November 8 2020 Retrieved March 1 2021 External links edit nbsp Wikimedia Commons has media related to Bash nbsp Wikibooks has a book on the topic of Bash Shell Scripting Official website nbsp Hamilton Naomi May 30 2008 The A Z of Programming Languages BASH Bourne Again Shell Computerworld Archived from the original on November 8 2016 interview with GNU Bash s maintainer Chet Ramey Retrieved from https en wikipedia org w index php title Bash Unix shell amp oldid 1212008612, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.