请输入您要查询的百科知识:

 

词条 Bash (Unix shell)
释义

  1. History

  2. Features

     Brace expansion  Startup scripts  Execution order of startup files  When started as an interactive login shell  When a login shell exits  When started as an interactive shell (but not a login shell)  Comparison with the Bourne shell and csh startup sequences  Setting inheritable environment variables  Aliases and Functions  Commands performed only at login and logout  Legacy-compatible Bash startup example  Operating system issues in Bash startup  Portability  Keyboard shortcuts  Process management  Conditional execution  Bug reporting 

  3. See also

  4. References

  5. External links

{{Use mdy dates|date=March 2014}}{{Infobox software
| name = Bash
| logo = Gnu-bash-logo.svg
| screenshot = Bash screenshot.png
| caption = Screenshot of a Bash session
| author = Brian Fox
| released = {{start date and age|1989|06|08}}
| programming language = C
| operating system = {{Plainlist|
  • Unix-like,[1]
  • macOS (system includes an older GNU GPL v2 version); current version available through third parties[2]
  • Windows (newer GNU GPL v3+ version[3])[4]

| platform = GNU
| language = Multilingual (gettext)
| genre = Unix shell, command language
| license = GNU GPL v3+[5]
| website = {{URL|https://www.gnu.org/software/bash/}}
}}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.[6][7] First released in 1989,[8] it has been distributed widely as the default login shell for most Linux distributions and Apple's macOS (formerly {{nowrap|OS X}}). A version is also available for Windows 10.[9] It is also the default user shell in Solaris 11. [10]

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

The shell's name is an acronym for Bourne-again shell, a pun on the name of the Bourne shell that it replaces[11]

and on the common term "born again".[12][13]

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

History

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

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 (although Almquist shell may be the default scripting shell) and on Apple's macOS.[26][27][28] Bash has also been ported to Microsoft Windows and distributed with Cygwin and MinGW, to DOS by the DJGPP project, to Novell NetWare and to Android via various terminal emulation applications.

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

Features

The Bash command syntax is a superset of the Bourne shell command syntax. Bash supports brace expansion, command line completion, basic debugging[32] and exception handling (using trap) among others 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, 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 of 2.04[33], 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 Korn shell 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.[34]

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.[35][36]

In February 2009[37] Bash 4.0, introduced support for associative arrays.[34][38] Associative arrays allow a fake support for multi-dimensional (indexed) arrays, in a similar way to AWK. Bash 4.x has not been integrated in newer version of MacOS due to license restrictions.[39]. Associative array example:

$ declare -A aa # declare an associative array 'aa' faking a bi-dimensional indexed array

$ i=1; j=2 # initialize some indices

$ aa[$i,$j]=5 # associate value "5" to key "$i,$j" (i.e. "1,2")

$ echo ${aa[$i,$j]} # print the stored value at key "$i,$j"

5

[40]

Brace expansion

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.

$ # 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,

echo *.{png,jp{e,}g} # echo just show the expansions -

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

{{Section howto|date=January 2019}}

When Bash starts, it executes the commands in a variety of dot files. Though similar to Bash shell script commands, which have execute permission enabled and an interpreter directive like #!/bin/bash, the initialization files used by Bash require neither.

Execution order of startup files

When started as an interactive login shell

Bash reads and executes /etc/profile (if it exists). (Often this file calls /etc/bash.bashrc.)

After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile in that order, and reads and executes the first one that exists and is readable.

When a login shell exits

Bash reads and executes ~/.bash_logout (if it exists).

When started as an interactive shell (but not a login shell)

Bash reads and executes /etc/bash.bashrc and then ~/.bashrc (if it exists). This may be inhibited by using the --norc option. The --rcfile file option forces Bash to read and execute commands from file instead of ~/.bashrc.

Comparison with the Bourne shell and csh startup sequences

Elements of Bash derive from the Bourne shell and csh. These allow limited startup file sharing with the Bourne shell and provide some startup features familiar to csh users.

Setting inheritable environment variables

The Bourne shell uses the ~/.profile at login to set environment variables that subprocesses then inherit. Bash can use the ~/.profile in a compatible way, by executing it explicitly from the Bash-specific ~/.bash_profile or ~/.bash_login with the line below. Bash-specific syntax can be kept out of the ~/.profile to keep the latter compatible with the Bourne shell.

. ~/.profile
Aliases and Functions

These two facilities, aliases from csh and the more general functions that largely supersede them from Bourne shell, were not typically inheritable from the login shell, and had to be redefined in each subshell spawned from the login shell. Although there is an ENV environment variable that could be applied to the problem, both csh and Bash support per-subshell startup files that address it directly. In Bash, the ~/.bashrc is called for interactive subshells. If user-defined functions from the ~/.bashrc are desired in the login shell as well, the ~/.bash_login can include the line below after any setting up of environment variables:

. ~/.bashrc
Commands performed only at login and logout

The csh supports a ~/.login file for purposes of tasks performed only during initial login, such as displaying system load, disk status, whether email has come in, logging the login time, etc. The Bourne shell can emulate this in the ~/.profile, but doesn't predefine a file name. To achieve similar semantics to the csh model, the ~/.bash_profile can contain the line below, after the environment setup and function setup:

. ~/.bash_login

Likewise, the csh has a ~/.logout file run only when the login shell exits. The Bash equivalent is ~/.bash_logout, and requires no special setup. In the Bourne shell, the trap built-in can be used to achieve a similar effect.

Legacy-compatible Bash startup example

The skeleton ~/.bash_profile below is compatible with the Bourne shell and gives semantics similar to csh for the ~/.bashrc and ~/.bash_login. The [ -r filename ] are tests to see if the filename exists and is readable, simply skipping the part after the && if it's 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

Some versions of Unix and Linux contain Bash system startup scripts, generally under the /etc directories. Bash calls these 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

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

Bash shell scripts intended for portability should at least take into account the Bourne shell it intends to replace. Bash has certain features that the traditional Bourne shell lacks. They include:[41]

  • Certain extended invocation options
  • Command substitution using $( ) notation (this feature is part of the POSIX 1003.2 standard though)
  • Brace expansion
  • Certain array operations, and associative arrays
  • The double brackets extended test construct
  • The double-parentheses arithmetic-evaluation construct
  • Certain string-manipulation operations
  • Process substitution
  • A Regular Expression matching operator
  • Bash-specific builtins
  • Coprocesses

A "bashism" is a portion of bash code that does not run properly on other Unix shells.[42]

Keyboard shortcuts

{{Main article|GNU Readline}}

Bash uses 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.[43]

Process management

The Bash shell has two modes of execution for commands: batch, and concurrent mode.

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

command1; command2

in this example, when command1 is finished, command2 is executed.

You can also have a background execution of command1 using (symbol &) at the end of your execution command, and process will be executed in background returning immediately control to your shell and allowing you to keep executing 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 returned control to bash by typing {{Key press|Ctrl|z}} while the process is running in the foreground[44].

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 the 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 -s SIGKILL %1 or kill -9 %1

Conditional execution

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 {{code|2=bash|if ...;then ...;else ...;fi}} and {{code|2=bash|case $VARIABLE in $pattern)...;;$other_pattern)...;; esac}} forms of conditional command evaluation.

Bug reporting

{{Redirect|bashbug|the widely reported September 2014 bug found in Bash|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).[45][46]

See also

{{Portal|Free and open-source software}}
  • Comparison of command shells

References

1. ^{{cite web|url=ftp://ftp.cwru.edu/pub/bash/FAQ|archive-url=https://web.archive.org/web/20180901171316/ftp://ftp.cwru.edu/pub/bash/FAQ|archive-date=September 1, 2018|dead-url=yes|title=Bash FAQ, version 4.14|access-date=April 9, 2016|df=mdy-all}}
2. ^{{cite web|url=http://apple.stackexchange.com/questions/208312/why-does-apple-ship-bash-3-2|title=Why does Apple ship bash 3.2?|website=apple.stackexchange.com}}
3. ^{{cite web|url=https://github.com/Microsoft/BashOnWindows/issues/107|title=Missing source code - GPL compliance? · Issue #107 · Microsoft/WSL|website=GitHub}}
4. ^{{cite web|title=GNU Bash|url=http://www.softpedia.com/get/System/System-Miscellaneous/GNU-Bash.shtml|website=Softpedia|publisher=SoftNews|accessdate=9 April 2016}}
5. ^{{cite web | author = GNU Project | authorlink = GNU Project | title = README file | url = https://www.gnu.org/software/bash/ | quote = 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).}}
6. ^{{Cite newsgroup | title = GNU + BSD = ? | author = Richard Stallman (forwarded with comments by Chet Ramey) | date = February 10, 1988 | newsgroup = comp.unix.questions |message-id=2362@mandrill.CWRU.Edu | url=https://groups.google.com/forum/#!original/comp.unix.questions/iNjWwkyroR8/yedr9yDWSuQJ | accessdate = March 22, 2011 | quote = 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.}}
7. ^{{Citation | last = Hamilton | first = Naomi | title = The A-Z of Programming Languages: BASH/Bourne-Again Shell | journal = Computerworld | page = 2 | date = May 30, 2008 | accessdate = March 21, 2011 | url = http://www.computerworld.com.au/article/222764/a-z_programming_languages_bash_bourne-again_shell/?pp=2&fp=16&fpid=1 | quote = 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.}}
8. ^{{Cite newsgroup | title = Bash is in beta release! | author = Brian Fox (forwarded by Leonard H. Tower Jr.) | date = June 8, 1989 | newsgroup = gnu.announce | url = https://groups.google.com/group/gnu.announce/msg/a509f48ffb298c35?hl=en | accessdate = October 28, 2010 }}
9. ^{{cite web|url=http://www.windowscentral.com/how-install-bash-shell-command-line-windows-10|title=How to install Bash shell command-line tool on Windows 10|date=September 28, 2016|publisher=}}
10. ^{{cite web|url=https://docs.oracle.com/cd/E23824_01/html/E24456/userenv-1.html|title=User Environment Feature Changes|date=|publisher=Oracle}}
11. ^C Programming by Al Stevens, Dr. Dobb's Journal, July 1, 2001
12. ^{{cite web | author = Richard Stallman | title = About the GNU Project | publisher = Free Software Foundation | date = November 12, 2010 | url = https://www.gnu.org/gnu/thegnuproject.html | quote = "Bourne Again Shell" is a play on the name Bourne Shell, which was the usual shell on Unix. | accessdate = March 13, 2011| archiveurl= https://web.archive.org/web/20110424064815/https://www.gnu.org/gnu/thegnuproject.html| archivedate=April 24, 2011 | deadurl= no}}
13. ^{{Citation |last = Gattol |first = Markus |title = Bourne-again Shell |date = March 13, 2011 |url = http://www.markus-gattol.name/ws/bash.html |quote = 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". |accessdate = March 13, 2011 |deadurl = yes |archiveurl = https://web.archive.org/web/20110309092607/http://www.markus-gattol.name/ws/bash.html |archivedate = March 9, 2011 |df = mdy-all}}
14. ^{{cite web |last=Chazelas |first=Stephane |title=oss-sec mailing list archives |url=http://seclists.org/oss-sec/2014/q4/102 |date=4 October 2014 |work=Seclists.org |accessdate=4 October 2014}}
15. ^{{cite web |last=Leyden |first=John |title=Patch Bash NOW: 'Shell Shock' bug blasts OS X, Linux systems wide open |url=https://www.theregister.co.uk/2014/09/24/bash_shell_vuln/ |work=The Register |date=September 24, 2014 |accessdate=September 25, 2014}}
16. ^{{cite news |last=Perlroth |first=Nicole |title=Security Experts Expect ‘Shellshock’ Software Bug in Bash to Be Significant |url=https://www.nytimes.com/2014/09/26/technology/security-experts-expect-shellshock-software-bug-to-be-significant.html |date=September 25, 2014 |work=The New York Times |accessdate=September 25, 2014 }}
17. ^{{cite web |last=Seltzer |first=Larry |title=Shellshock makes Heartbleed look insignificant |archiveurl=https://web.archive.org/web/20160514191755/http://www.zdnet.com/article/hackers-jump-on-the-shellshock-bash-bandwagon/ |archivedate=May 14, 2016 |url=http://www.zdnet.com/shellshock-makes-heartbleed-look-insignificant-7000034143/ |date=29 September 2014 |work=ZDNet}}
18. ^{{Citation | author = Brian Fox | title = shell.c | place = | publisher = Free Software Foundation | date = August 29, 1996 | url = http://ftp.gnu.org/gnu/bash/bash-1.14.7.tar.gz | quote = Birthdate: Sunday, January 10th, 1988. Initial author: Brian Fox }}
19. ^{{cite web | author = Richard Stallman | title = About the GNU Project | publisher = Free Software Foundation | date = October 3, 2010 | url = https://www.gnu.org/gnu/thegnuproject.html | accessdate = March 21, 2011 | quote = 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.| archiveurl= https://web.archive.org/web/20110424064815/https://www.gnu.org/gnu/thegnuproject.html| archivedate=April 24, 2011 | deadurl= no}}
20. ^{{Cite newsgroup | title = January 1993 GNU's Bulletin | author = len (g...@prep.ai.mit.edu) | date = April 20, 1993 | newsgroup = gnu.announce |message-id= gnusenet930421bulletin@prep.ai.mit.edu | url = https://groups.google.com/group/gnu.misc.discuss/msg/4f42c739cd7e8bd8 | accessdate = October 28, 2010}}
21. ^{{cite web|first=Chet|last=Ramey|title=Bash - the GNU shell (Reflections and Lessons Learned)|url=http://www.linuxjournal.com/article/2800#N0xa50890.0xb46380|accessdate=November 13, 2008| date=August 1, 1994|work=Linux Journal| archiveurl= https://web.archive.org/web/20081205082152/http://www.linuxjournal.com/article/2800| archivedate=December 5, 2008 | deadurl= no}}
22. ^{{Citation | title = Dates in your Computerworld interview | author = Chet Ramey | date = October 31, 2010 | url = https://www.scribd.com/doc/40556434/2010-10-31-Chet-Ramey-Early-Bash-Dates | accessdate = October 31, 2010}}
23. ^{{Cite newsgroup | title = Bash 0.99 fixes & improvements | author = Chet Ramey | date = June 12, 1989 | newsgroup = gnu.bash.bug |message-id= | url = https://groups.google.com/group/gnu.bash.bug/msg/1fc7b688f5d44438?hl=en | accessdate = November 1, 2010}}
24. ^{{Cite newsgroup | title = Some bash-1.02 fixes | author = Chet Ramey | date = July 24, 1989 | newsgroup = gnu.bash.bug |message-id= | url = https://groups.google.com/group/gnu.bash.bug/msg/072a03645663caea?hl=en | accessdate = October 30, 2010}}
25. ^{{Cite newsgroup| title = Availability of bash 1.05| author = Brian Fox| date = March 2, 1990| newsgroup = gnu.bash.bug|message-id=| url = https://groups.google.com/group/gnu.bash.bug/msg/e6112ccc8866e2f4?hl=en| accessdate = October 30, 2010}}
26. ^{{Cite book| title = Beginning Shell Scripting| publisher = John Wiley & Sons, Inc.| date = April 2005| isbn = 978-0-7645-9791-6| last = Foster-Johnson| first = Eric| last2 = Welch| first2 = John C.| last3 = Anderson| first3 = Micah| url = https://books.google.com/books?id=dwIRERUpQPEC&pg=PA6&dq=bash+most+popular+unix+shell&hl=en&sa=X&ved=0ahUKEwi_3fnR2pPNAhUX3GMKHTEdAZoQ6AEIQTAF#v=onepage&q=bash%20most%20popular%20unix%20shell&f=false| quote = Bash is by far the most popular shell and forms the default shell on Linux and Mac OSX systems.| page = 6| accessdate = June 6, 2016}}
27. ^{{cite book| title = Mastering Linux| publisher = John Wiley & Sons, Inc.| date = February 2006| isbn = 978-0-7821-5277-7| last = Danesh| first = Arman| last2 = Jang| first2 = Michael| url = https://books.google.com/books?id=tIjrVYbZmUAC&pg=PA363&dq=bash+most+popular+unix+shell&hl=en&sa=X&ved=0ahUKEwjnipq_3JPNAhUH52MKHUD-DA04ChDoAQgpMAA#v=onepage&q=bash%20most%20popular%20unix%20shell&f=false| quote = The Bourne Again Shell (bash) is the most common shell installed with Linux distributions.| page = 363| accessdate = June 6, 2016}}
28. ^{{cite book| title = CompTIA Linux+ Powered by Linux Professional Institute Study Guide: Exam LX0-103 and Exam LX0-104| edition = 3rd| publisher = John Wiley & Sons, Inc.| date = April 2015| isbn = 978-1-119-02122-3| last = Bresnahan| first = Christine| last2 = Blum| first2 = Richard| url = https://books.google.com/books?id=2P3zBgAAQBAJ&pg=PA5&dq=%22most+popular%22+linux+shell&hl=en&sa=X&ved=0ahUKEwiDhpnX4JPNAhWCKGMKHQCmCoEQ6AEIRjAH#v=onepage&q=%22most%20popular%22%20linux%20shell&f=false| quote = In Linux, most users run bash because it is the most popular shell.| page = 5| accessdate = June 6, 2016}}
29. ^https://www.linkedin.com/pub/st%C3%A9phane-chazelas/7/2a2/834
30. ^{{cite web|url=https://cve.mitre.org/cgi-bin/cvename.cgi?name=2014-6277|title=CVE-2014-6277|website=cve.mitre.org}}
31. ^{{Cite web| author = Huzaifa Sidhpurwala| title = Bash specially-crafted environment variables code injection attack| publisher = Red Hat| url = https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/| date = 2014-09-24}}
32. ^http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_02_03.html
33. ^http://www.caliban.org/bash/index.shtml
34. ^{{Citation | title = The GNU Bash Reference Manual, for Bash, Version 4.1 | place = | publisher = | origyear = | date = December 23, 2009 | volume = | edition = | chapter = 6.11 Bash POSIX Mode | chapterurl = https://www.gnu.org/software/bash/manual/html_node/Bash-POSIX-Mode.html | accessdate = October 26, 2010 | url = https://www.gnu.org/software/bash/manual/html_node/index.html| archiveurl= https://web.archive.org/web/20101203065400/https://www.gnu.org/software/bash/manual/html_node/index.html| archivedate= December 3, 2010 | deadurl= no}}
35. ^{{Cite web|url=http://www.tldp.org/LDP/abs/html/bashver3.html#BASH3REF|title=Advanced Bash-Scripting Guide|last=|first=|date=|website=www.tldp.org|at=Section 37.2 (Bash, version 3)|access-date=2017-03-05}}
36. ^The syntax matches that shown on the regex(7) man page.
37. ^http://tldp.org/LDP/abs/html/bashver4.html
38. ^"The shell provides associative array variables, with the appropriate support to create, delete, assign values to, and expand them." http://tiswww.case.edu/php/chet/bash/NEWS
39. ^https://apple.stackexchange.com/questions/193411/update-bash-to-version-4-0-on-osx
40. ^https://www.gnu.org/software/bash/manual/html_node/Arrays.html
41. ^{{cite web|author=Mendel Cooper|title=Portability Issues|url=http://tldp.org/LDP/abs/html/portabilityissues.html|work=The Linux Documentation Project|publisher=ibiblio.org}}
42. ^{{cite web|url=https://linux.die.net/man/1/checkbashisms|title=checkbashisms(1) - Linux man page|website=linux.die.net}}
43. ^{{cite web|url=http://www.hypexr.org/bash_tutorial.php#emacs |title=BASH Help - A Bash Tutorial |publisher=Hypexr.org |date=October 5, 2012 |accessdate=July 21, 2013}}
44. ^https://www.gnu.org/software/bash/manual/bash.html#index-background
45. ^bashbug(1), die.net
46. ^[https://developer.apple.com/library/prerelease/mac/documentation/Darwin/Reference/ManPages/man1/bashbug.1.html "Linux / Unix Command: bashbug"], apple.com

External links

{{Commons category|GNU Bash|Bash}}{{Wikibooks|Bash Shell Scripting}}
  • {{official website|https://www.gnu.org/software/bash/}}
  • 2008 interview with GNU Bash's maintainer, Chet Ramey
  • [https://github.com/lanl/MPI-Bash MPI-Bash]: A MPI-enabled plugin for the Bourne-Again Shell by Scott Pakin
{{GNU}}{{Unix shells}}{{Programming languages}}{{DEFAULTSORT:Bash (Unix Shell)}}

8 : 1989 software|Cross-platform free software|Domain-specific programming languages|Free software programmed in C|GNU Project software|Scripting languages|Text-oriented programming languages|Unix shells

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/27 15:24:36