Almquist shell

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
Almquist shell
Development status Active
Written in C
Operating system Various Unix-like operating systems (BSD, MINIX, Linux, Android)
Available in English, multilingual (gettext)
Type Unix shell

The Almquist shell (also known as A Shell, ash and sh) is a lightweight Unix shell originally written by Kenneth Almquist in the late 1980s. Initially a clone of the System V.4 variant of the Bourne shell, it replaced the original Bourne shell in the BSD versions of Unix released in the early 1990s. Derivative versions of ash are still installed as the default shell (/bin/sh) on FreeBSD, NetBSD, DragonFly BSD, MINIX, and Android,[1] [2] and in some Linux distributions.

Debian and derived Linux distributions such as Ubuntu ship a version of ash, known as dash (Debian Almquist shell), as the default /bin/sh, although Bash is the default login shell for interactive use.[3] The reason for using dash is faster shell script execution,[4] especially during startup of the operating system, compared to previous versions of Debian and Ubuntu that used Bash for this purpose.

Ash is also fairly popular in embedded Linux systems; its code was incorporated into the BusyBox catch-all executable often employed in this area.

History

ash was first released via a posting to the comp.sources.unix Usenet news group, approved and moderated by Rich Salz on 30 May 1989. It was described as "a reimplementation of the System V shell [with] most features of that shell, plus some additions".[5]

The following is extracted from the ash package information from Slackware:[when?]

<templatestyles src="Template:Blockquote/styles.css" />

ash (Kenneth Almquist's ash shell)


A lightweight (92K) Bourne compatible shell. Great for machines with low memory, but does not provide all the extras of shells like bash, tcsh, and zsh. Runs most shell scripts compatible with the Bourne shell. Note that under Linux, most scripts seem to use at least some bash-specific syntax. The Slackware setup scripts are a notable exception, since ash is the shell used on the install disks. NetBSD and Ubuntu uses ash as its /bin/sh.

Fast, small, and virtually compatible with the POSIX standard's specification of the Unix shell, ash did not feature line editing[clarification needed] or command history mechanisms, because Almquist felt that such functionality should be moved into the terminal driver. However, current variants support it.

Dash replaced ash and became the default /bin/sh in Debian 6 (Squeeze).[6] Dash became the default /bin/sh in Ubuntu starting with the 6.10 release in October 2006.[7] During the transition by Ubuntu, numerous scripts making use of Bash-specific functionality (but not declaring it) were discovered.[8][9]

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.[dead link]
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Dash as /bin/sh
  7. Dash as /bin/sh in Ubuntu 6.10
  8. Ubuntu bug #61463: script that are using bash could be broken with the new symlink
  9. Ubuntu bug #141481: dash as #!/bin/sh introduces countless incompatibilities

External links