Jump to content

Bash (Unix shell): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Reverted edits by 86.34.2.202 to last revision by 192.35.79.70 (HG)
Line 121: Line 121:


{{GNU}}
{{GNU}}
{{Unix Shells}}


[[Category:Text-oriented programming languages]]
[[Category:Text-oriented programming languages]]

Revision as of 13:02, 28 October 2009

Bash
Developer(s)Chet Ramey
Stable release
4.0.33 / September 9, 2009 (2009-09-09)
Repository
Written inC
Operating systemCross-platform
PlatformGNU
Available inEnglish, multilingual (gettext)
TypeUnix shell
LicenseGPLv3+[1]
WebsiteHome page

Bash is a free software Unix shell written for the GNU Project. Its name is an acronym which stands for Bourne-again shell.[2] 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,[3] and "born again". Bash was created in 1987 by Brian Fox. In 1990 Chet Ramey became the primary maintainer.[4]

Bash is the shell for the GNU operating system from the GNU Project. It can be run on most Unix-like operating systems. It is the default shell on most systems built on top of the Linux kernel as well as on Mac OS X and Darwin. It has also been ported to Microsoft Windows using Subsystem for UNIX-based Applications (SUA), or POSIX emulation provided by Cygwin and MSYS. It has been ported to MS-DOS by the DJGPP project and to Novell NetWare.

Features

The Bash command syntax is a superset of the Bourne shell command syntax. The vast majority of Bourne shell scripts can be executed by Bash without modification, with the exception of Bourne shell scripts referencing a Bourne special variable or those using builtin Bourne commands. 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 used as an interactive command shell and pressing the tab key, Bash automatically uses command line completion to match partly typed program names, filenames and variable names.

Bash's syntax has many extensions which the Bourne shell lacks. Bash can perform integer calculations without spawning external processes, unlike the Bourne shell. Bash uses the ((…)) command and the $[…] variable syntax for this purpose. Bash syntax simplifies I/O redirection in ways that are not possible in the traditional Bourne shell. For example, Bash 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 function declarations (using the key word 'function') are not compatible with Bourne/Korn/POSIX/C-shell scripts, so Bash shell scripts are almost never compatible with other common shells.

Bash supports here documents just as the Bourne shell always has. However, 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.[5]

Brace expansion

Brace expansion is a feature, originating in csh, that allows arbitrary strings to be generated using a similar technique to filename expansion. However the generated names need not exist as files. The results of each expanded string are not sorted and left to right order is preserved:

# This is a bash-specific feature
echo a{p,c,d,b}e # ape ace ade abe

Brace expansions should not be used in portable shell scripts, because a traditional shell will not produce the same output:

# A traditional shell does not produce the same output
echo a{p,c,d,b}e # a{p,c,d,b}e

Startup scripts

When Bash starts, it executes the commands in a variety of different scripts.

When Bash is invoked as an interactive login shell, it first reads and executes commands from the file /etc/profile, if that file exists. After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order, and reads and executes commands from the first one that exists and is readable.

When a login shell exits, Bash reads and executes commands from the file ~/.bash_logout, if it exists.

When an interactive shell that is not a login shell is started, Bash reads and executes commands from ~/.bashrc, if that file exists. This may be inhibited by using the --norc option. The --rcfile file option will force Bash to read and execute commands from file instead of ~/.bashrc.

Portability

Shell scripts written with Bash-specific features (bashisms) will not function on a system using the Bourne shell or one of its replacements, unless Bash is installed as a secondary shell and the script begins with #!/bin/bash (known as the "shebang line"). This problem became particularly important when Ubuntu began to ship the Debian Almquist shell (dash) as the default scripting shell in October 2006, causing a wide variety of scripts to fail.

Keyboard shortcuts

See also: Readline

  • Tab ↹ : Autocompletes from the cursor position.
  • CTRL+a : moves the cursor at the beginning of the line (equivalent to the key : Home).
  • CTRL+e : (end) moves the cursor at the line end (equivalent to the key : End).
  • CTRL+p : (previous) recalls the previous command (equivalent to the key : Up arrow).
  • CTRL+n : (next) recalls the next command (equivalent to the key : Down arrow).
  • CTRL+r : (research) recalls the last command including the specified character(s) (equivalent to : vim ~/.bash_history). A second CTRL + r recalls the next anterior command which corresponds to the research
  • CTRL+s : Go back to the next more recent command of the research (beware to not execute it from a terminal because this command also launches its XOFF).
  • CTRL+o : executes the found command from research.
  • CTRL+l : clears the screen content (equivalent to the command : clear).
  • CTRL+u : clears the line content before the cursor and copy it in the clipboard.
  • CTRL+k : clears the line content after the cursor and copy it in the clipboard.
  • CTRL+w : clears the word before the cursor and copy it in the clipboard.
  • CTRL+y : (yank) adds the clipboard content from the cursor position.
  • CTRL+d : sends an EOF marker, which (unless disabled by an option) closes the current shell (equivalent to the command : Exit).
  • CTRL+c : sends the signal SIGINT to the current task, which aborts and closes it.
  • CTRL+z : sends the signal SIGTSTP to the current task, which suspends it. To return to it later one can enter fg 'process name' (foreground).
  • CTRL+x CTRL+x : (because x has a crossing shape) alternates the cursor with its old position.
  • CTRL+x CTRL+e : (editor because it takes the $EDITOR shell variable) edits the current line in vi.
  • ALT+f : (forward) moves forward the cursor of one word.
  • ALT+b : (backward) moves backward the cursor of one word.
  • ALT+del : cuts the word before the cursor.
  • ALT+d : cuts the word after the cursor.
  • ALT+u : capitalizes every character from the cursor's position to the end of the current word.
  • ALT+l : lowers the case of every character from the cursor's position to the end of the current word.
  • ALT+c : capitalizes the character under the cursor and moves to the end of the word.
  • ALT+r : cancels the changes and put back the line as it was in the history.

See also

References

  1. ^ GNU Project. "README file". 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)
  2. ^ C Programming by Al Stevens, Dr. Dobb's Journal, July 1, 2001
  3. ^ Fresh Faces by Rosalyn Lum, Dr. Dobb's Journal, June 1, 2005
  4. ^ Ramey, Chet (1994-08-01). "Bash - the GNU shell (Reflections and Lessons Learned)". Linux Journal. Retrieved 2008-11-13.
  5. ^ The syntax matches that shown on the regex(7) man page.