SUPPORT THE WORK

GetWiki

unix shell

ARTICLE SUBJECTS
aesthetics  →
being  →
complexity  →
database  →
enterprise  →
ethics  →
fiction  →
history  →
internet  →
knowledge  →
language  →
licensing  →
linux  →
logic  →
method  →
news  →
perception  →
philosophy  →
policy  →
purpose  →
religion  →
science  →
sociology  →
software  →
truth  →
unix  →
wiki  →
ARTICLE TYPES
essay  →
feed  →
help  →
system  →
wiki  →
ARTICLE ORIGINS
critical  →
discussion  →
forked  →
imported  →
original  →
unix shell
[ temporary import ]
please note:
- the content below is remote from Wikipedia
- it has been imported raw for GetWiki
{{short description|Command-line interpreter for Unix operating system}}File:Tcsh ejecutándose en escritorio Mac OSX.png|thumb|300px|right|tcsh and sh shell windows on a Mac OS X LeopardMac OS X LeopardA Unix shell is a command-line interpreter or shell that provides a command line user interface for Unix-like operating systems. The shell is both an interactive command language and a scripting language, and is used by the operating system to control the execution of the system using shell scripts.NEWS,archive.org/stream/byte-magazine-1983-10/1983_10_BYTE_08-10_UNIX#page/n187/mode/2up, The Unix Shell, BYTE, October 1983, 30 January 2015, Bourne, Stephen R., 187, Users typically interact with a Unix shell using a terminal emulator; however, direct operation via serial hardware connections or Secure Shell are common for server systems. All Unix shells provide filename wildcarding, piping, here documents, command substitution, variables and control structures for condition-testing and iteration.

Concept

Generally, a shell is a program that executes other programs in response to text commands. A sophisticated shell can also change the environment in which other programs execute by passing named variables, a parameter list, or an input source.In Unix-like operating systems, users typically have many choices of command-line interpreters for interactive sessions. When a user logs into the system interactively, a shell program is automatically executed for the duration of the session. The type of shell, which may be customized for each user, is typically stored in the user’s profile, for example in the local {{mono|passwd}} file or in a distributed configuration system such as NIS or LDAP; however, the user may execute any other available shell interactively.On operating systems with a windowing system, such as macOS and desktop Linux distributions, some users may never use the shell directly. On Unix systems, the shell has historically been the implementation language of system startup scripts, including the program that starts a windowing system, configures networking, and many other essential functions. However, some system vendors have replaced the traditional shell-based startup system (init) with different approaches, such as systemd.

Early shells

The first Unix shell was the Thompson shell, sh, written by Ken Thompson at Bell Labs and distributed with Versions 1 through 6 of Unix, from 1971 to 1975. Though rudimentary by modern standards, it introduced many of the basic features common to all later Unix shells, including piping, simple control structures using if and goto, and filename wildcarding. Though not in current use, it is still available as part of some Ancient UNIX systems.It was modeled after the Multics shell, developed in 1965 by American software engineer Glenda Schroeder. Schroeder’s Multics shell was itself modeled after the RUNCOM program Louis Pouzin showed to the Multics Team. The “rc” suffix on some Unix configuration files (for example, ”.vimrc“), is a remnant of the RUNCOM ancestry of Unix shells.The PWB shell or Mashey shell, sh, was an upward-compatible version of the Thompson shell, augmented by John Mashey and others and distributed with the Programmer’s Workbench UNIX, circa 1975–1977. It focused on making shell programming practical, especially in large shared computing centers. It added shell variables (precursors of environment variables, including the search path mechanism that evolved into $PATH), user-executable shell scripts, and interrupt-handling. Control structures were extended from if/goto to if/then/else/endif, switch/breaksw/endsw, and while/end/break/continue. As shell programming became widespread, these external commands were incorporated into the shell itself for performance.But the most widely distributed and influential of the early Unix shells were the Bourne shell and the C shell. Both shells have been used as the coding base and model for many derivative and work-alike shells with extended feature sets.WEB,www.softpanorama.org/People/Shell_giants/introduction.shtml, Introduction to the Unix shell history, Nikolai Bezroukov, Nikolai Bezroukov, Softpanorama, 2015-08-13, 2016-08-21,web.archive.org/web/20220608181527/www.softpanorama.org/People/Shell_giants/introduction.shtml, 2022-06-08, dead,

Bourne shell

The Bourne shell, sh, was a new Unix shell by Stephen Bourne at Bell Labs.INTERVIEW,www2.computerworld.com.au/article/279011/a-z_programming_languages_bourne_shell_sh/, The A-Z of Programming Languages: Bourne shell, or sh, Stephen, Bourne, Stephen R. Bourne, Howard Dahdah, 2009-03-05, Computerworld, 2022-08-16, Distributed as the shell for UNIX Version 7 in 1979, it introduced the rest of the basic features considered common to all the later Unix shells, including here documents, command substitution, more generic variables and more extensive builtin control structures. The language, including the use of a reversed keyword to mark the end of a block, was influenced by ALGOL 68.WEB,groups.google.com/group/comp.lang.misc/msg/d58db4799c33e093?hl=en&dmode=source, Re: Late Bloomers Revisited, 20 September 2014, Traditionally, the Bourne shell program name is {{mono|sh}} and its path in the Unix file system hierarchy is {{mono|/bin/sh}}. But a number of compatible work-alikes are also available with various improvements and additional features. On many systems, sh may be a symbolic link or hard link to one of these alternatives:
  • Almquist shell (ash): written as a BSD-licensed replacement for the Bourne Shell; often used in resource-constrained environments. The sh of FreeBSD, NetBSD (and their derivatives) are based on ash that has been enhanced to be POSIX conformant.
    • Busybox: a set of Unix utilities for small and embedded systems, which includes 2 shells: ash, a derivative of the Almquist shell; and hush, an independent implementation of a Bourne shell.
    • Debian Almquist shell (dash): a modern replacement for ash in Debian and Ubuntu
  • Bourne-Again shell (bash): written as part of the GNU Project to provide a superset of Bourne Shell functionality. This shell can be found installed and is the default interactive shell for users on most Linux systems.
  • KornShell (ksh): written by David Korn based on the Bourne shell sources
{{citation| title = ksh - An Extensible High Level Language| last = Korn| first = David G.| publisher = USENIX Association| journal = Proceedings of the USENIX 1994 Very High Level Languages Symposium| date = October 26, 1994| url =www.usenix.org/legacy/publications/library/proceedings/vhll/full_papers/korn.ksh.a| quote = Instead of inventing a new script language, we built a form entry system by modifying the Bourne shell, adding built-in commands as necessary.| access-date = February 5, 2015}} while working at Bell Labs The POSIX standard specifies its standard shell as a strict subset of the Korn shell, an enhanced version of the Bourne shell. From a user’s perspective the Bourne shell was immediately recognized when active by its characteristic default command line prompt character, the dollar sign ({{mono|$}}).

C shell

The C shell, csh, was modeled on the C programming language, including the control structures and the expression grammar. It was written by Bill Joy as a graduate student at University of California, Berkeley, and was widely distributed with BSD Unix.Harley Hahn, Harley Hahn’s Guide to Unix and Linux: Unix/Linux Timeline.{{better source|date=September 2023}}The C shell also introduced many features for interactive work, including the history and editing mechanisms, aliases, directory stacks, tilde notation, cdpath, job control and path hashing. On many systems, csh may be a symbolic link or hard link to TENEX C shell (tcsh), an improved version of Joy’s original version. Although the interactive features of csh have been copied to most other shells, the language structure has not been widely copied. The only work-alike is Hamilton C shell, written by Nicole Hamilton, first distributed on OS/2 in 1988 and on Windows since 1992.WEB,hamiltonlabs.com/ReleaseNotes.htm, Hamilton C shell for Windows Release Notes 4.0, 20 September 2014,

Configuration files

Shells read configuration files in various circumstances. These files usually contain commands for the shell and are executed when loaded; they are usually used to set important variables used to find executables, like $PATH, and others that control the behavior and appearance of the shell. The table in this section shows the configuration files for popular shells.WEB,www.unixnote.com/2010/05/different-unix-shell.html, Different UNIX Shells, unixnote.com, 2010, 2016-08-21,web.archive.org/web/20160403120601/www.unixnote.com/2010/05/different-unix-shell.html, 2016-04-03, dead, {| class=“wikitable floatleft sortable” style="text-align: center; margin-right: 2em;”! Configuration file!sh!ksh!csh!tcsh!bash!zsh
{{mono|/etc/.login}}|||login|login||
{{mono|/etc/csh.cshrc}}|||yes|yes||
{{mono|/etc/csh.login}}|||login|login||
{{mono|~/.tcshrc}}||||yes||
{{mono|~/.cshrc}}|||yesonly if {{mono|~/.tcshrc}} not found}}||
{{mono|~/etc/ksh.kshrc}}||int.||||
{{mono|/etc/sh.shrc}}Newer versions of the Bourne Shell only}}|||||
{{mono~/.kshrc}})SCO Unix Group, SCO Unixware 7 documentation, 22 Apr 2004, retrieved 18 Oct 2012.Available on systems that support the “User Portability Utilities option”; value of the variable must be an absolute path, and it is ignored “if the user’s real and effective user IDs or real and effective group IDs are different.“HTTP://PUBS.OPENGROUP.ORG/ONLINEPUBS/9699919799/UTILITIES/V3_CHAP02.HTML#TAG_18_05_03>TITLE=SHELL COMMAND LANGUAGEACCESS-DATE=15 JUNE 2015, }}{{Efn$ENV}} is {{mono|$HOME/.shrc}} in newer versions of the Bourne Shell}}|int.||Same behavior as {{monosh}} (bash 2+) or, since bash 4.2, also if invoked explicitly in POSIX compatibility mode (with options {{mono-o posix}}).HTTPS://WWW.GNU.ORG/SOFTWARE/BASH/MANUAL/HTML_NODE/BASH-STARTUP-FILES.HTML>TITLE=BASH REFERENCE MANUAL: BASH STARTUP FILESACCESS-DATE=15 JUNE 2015, }}|
{{mono|~/.login}}|||login|login||
{{mono|~/.logout}}|||login|login||
{{mono|/etc/profile}}|login|login|||loginname=“zsh profiles“|Only in sh/ksh compatibility mode (when invoked as bash, sh, ksh)}}
{{mono|~/.profile}}|login|login||name=“bash profiles”~/.bash_profile}}, {{mono~/.profile}}; and only {{monosh}} or, as of at least Bash 4.2, if invoked explicitly in POSIX compatibility mode (with options {{mono-o posix}})}}name=“zsh profiles“}}
{{mono|~/.bash_profile}}||||name=“bash profiles“}}|
{{mono|~/.bash_login}}||||name=“bash profiles“}}|
{{mono|~/.bash_logout}}|||||login|
{{mono|~/.bashrc}}|||||int.+n/login|
{{mono|/etc/zshenv}}||||||yes
{{mono|/etc/zprofile}}||||||login
{{mono|/etc/zshrc}}||||||int.
{{mono|/etc/zlogin}}||||||login
{{mono|/etc/zlogout}}||||||login
{{mono|~/.zshenv}}||||||yes
{{mono|~/.zprofile}}||||||login
{{mono|~/.zshrc}}||||||int.
{{mono|~/.zlogin}}||||||login
Explanation:
  • blank means a file is not read by a shell at all.
  • “yes” means a file is always read by a shell upon startup.
  • “login” means a file is read if the shell is a login shell.
  • “n/login” means a file is read if the shell is not a login shell.
  • “int.” means a file is read if the shell is interactive.
{{Clear}}{{Notelist}}

Other shells

Variations on the Unix shell concept that don’t derive from Bourne shell or C shell include the following:WEB,www.freebsd.org/ports/shells.html, FreeBSD Ports: Shells, Freebsd.org, 2014-03-30, 2014-04-05,web.archive.org/web/20210112142623/www.freebsd.org/ports/shells.html, 2021-01-12, dead,

See also

{hide}Columns-list| {edih}

References

{{Reflist}}{{-}}{{Unix shells}}{{Unix}}

- content above as imported from Wikipedia
- "unix shell" does not exist on GetWiki (yet)
- time: 5:06am EDT - Wed, May 22 2024
[ this remote article is provided by Wikipedia ]
LATEST EDITS [ see all ]
GETWIKI 21 MAY 2024
GETWIKI 09 JUL 2019
Eastern Philosophy
History of Philosophy
GETWIKI 09 MAY 2016
GETWIKI 18 OCT 2015
M.R.M. Parrott
Biographies
GETWIKI 20 AUG 2014
CONNECT