Shell

From Hackepedia
Revision as of 22:02, 8 March 2007 by Franks (talk | contribs) (New page: A shell is both a command language and a programming language that provides an interface to any UNIX based operating system UBO. The most popular shell by far is [http://www.gnu.org/...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

A shell is both a command language and a programming language that provides an interface to any UNIX based operating system UBO.

The most popular shell by far is bash which is provided by the GNU team. There are several other popular shells, depending on your requirements and skillset:

  • csh
  • tcsh
  • sh
  • ash
  • zsh

to see what shell you are using:

$ echo $SHELL

which is one of the variables that can be found in your environment. You can get a list of all of your environment variables:

$ env

as you can see, there is where you will change items such as your PATH