home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / Unix / shell-differences < prev    next >
Encoding:
Internet Message Format  |  1996-10-18  |  20.1 KB

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!uunet!in1.uu.net!news.fido.net!dispatch.news.demon.net!demon!news.looking-glass.org!news.looking-glass.org!not-for-mail
  2. From: Brian Blackmore <bnb@gryphon.demon.co.uk>
  3. Newsgroups: comp.unix.shell,comp.unix.questions,news.answers,comp.answers
  4. Subject: UNIX shell differences and how to change your shell (Monthly Posting)
  5. Supersedes: <shell_842976685@news.looking-glass.org>
  6. Followup-To: comp.unix.shell
  7. Date: 17 Oct 1996 22:20:05 +0100
  8. Organization: None
  9. Lines: 369
  10. Sender: bnb@looking-glass.org
  11. Approved: news-answers-request@MIT.Edu
  12. Expires: 28 Nov 1996 21:19:58 GMT
  13. Message-ID: <shell_845587198@news.looking-glass.org>
  14. Reply-To: shell-diff@looking-glass.org
  15. NNTP-Posting-Host: gryphon.looking-glass.org
  16. X-NNTP-Posting-Host: gryphon.demon.co.uk
  17. Xref: informatik.tu-muenchen.de comp.unix.shell:43654 comp.unix.questions:102212 news.answers:84437 comp.answers:21753
  18.  
  19. Archive-name: unix-faq/shell/shell-differences
  20. Version: 1.17
  21.  
  22.    The following article answers the frequently asked questions, what
  23.    UNIX shells are available, what are the differences between them and
  24.    how do you change your interactive shell. It is posted monthly to the
  25.    USENET newsgroups comp.unix.shell, comp.unix.questions, news.answers
  26.    and comp.answers and is additionally available on the world wide web
  27.    as http://www.wonderland.org/~eternal/shell.html
  28.    
  29. Contents
  30.  
  31.      * Modifications since last issue
  32.      * Why change your shell
  33.      * The history of unix shells
  34.      * Deciding on a shell
  35.      * Shell features (table)
  36.      * How to change your shell
  37.      * A warning about changing your shell
  38.      * Further information
  39.      * Copyright and Disclaimer
  40.        
  41. Modifications since last issue
  42.  
  43.      * Change of authors contact addresses
  44.        
  45. Why change your shell
  46.  
  47.    The UNIX shell is most people's main access to the UNIX operating
  48.    system and as such any improvement to it can result in considerably
  49.    more effective use of the system, and may even allow you to do things
  50.    you couldn't do before. The primary improvement most of the new
  51.    generation shells give you is increased speed. They require fewer key
  52.    strokes to get the same results due to their completion features, they
  53.    give you more information (e.g. showing your directory in your prompt,
  54.    showing which files it would complete) and they cover some of the more
  55.    annoying features of UNIX, such as not going back up symbolic links to
  56.    directories.
  57.    
  58. A brief history of UNIX shells
  59.  
  60.    Note, this history is just known to be slightly out of historical
  61.    order, it is in the process of being corrected, but for the moment
  62.    should be taken with a pinch of salt
  63.    
  64.    In the near beginning there was the Bourne shell /bin/sh (written by
  65.    S. R. Bourne). It had (and still does) a very strong powerful
  66.    syntactical language built into it, with all the features that are
  67.    commonly considered to produce structured programs; it has
  68.    particularly strong provisions for controlling input and output and in
  69.    its expression matching facilities. But no matter how strong its input
  70.    language is, it had one major drawback; it made nearly no concessions
  71.    to the interactive user (the only real concession being the use of
  72.    shell functions and these were only added later) and so there was a
  73.    gap for something better.
  74.    
  75.    Along came the people from UCB and the C-shell /bin/csh was born. Into
  76.    this shell they put several concepts which were new, (the majority of
  77.    these being job control and aliasing) and managed to produce a shell
  78.    that was much better for interactive use. But as well as improving the
  79.    shell for interactive use they also threw out the baby with the bath
  80.    water and went for a different input language.
  81.    
  82.    The theory behind the change was fairly good, the new input language
  83.    was to resemble C, the language in which UNIX itself was written, but
  84.    they made a complete mess of implementing it. Out went the good
  85.    control of input and output and in came the bugs. The new shell was
  86.    simply too buggy to produce robust shell scripts and so everybody
  87.    stayed with the Bourne shell for that, but it was considerably better
  88.    for interactive use so changed to the C shell, this resulted in the
  89.    stupid situation where people use a different shell for interactive
  90.    work than for non-interactive, a situation which a large number of
  91.    people still find themselves in today.
  92.    
  93.    After csh was let loose on an unsuspecting world various people
  94.    decided that the bugs really should get fixed, and while they where at
  95.    it they might as well add some extra features. In came command line
  96.    editing, TENEX-style completion and several other features. Out went
  97.    most of the bugs, but did the various UNIX operating system
  98.    manufacturers start shipping tcsh instead of csh? No, most of them
  99.    stuck with the standard C-Shell, adding non-standard features as they
  100.    went along.
  101.    
  102.    Eventually David Korn from AT&T had the bright idea to sort out this
  103.    mess and the Korn shell /bin/ksh made its appearance. This quite
  104.    sensibly junked the C shells language and reverted back to the bourne
  105.    shell language, but it also added in the many features that made the C
  106.    shell good for interactive work (you could say it was the best of both
  107.    worlds), on top of this, it also added a some features from other
  108.    operating. The Korn shell became part of System V but had one major
  109.    problem; unlike the rest of the UNIX shells it wasn't free, you had to
  110.    pay AT&T for it.
  111.    
  112.    It was at about this time that the first attempts to standardize UNIX
  113.    started in the form of the POSIX standard. POSIX specified more or
  114.    less the System V Bourne Shell (by this time the BSD and System V
  115.    versions had got slightly different). Later the standard is upgraded,
  116.    and somehow the new standard managed to look very much like ksh.
  117.    
  118.    Also at about this time the GNU project was underway and they decided
  119.    that they needed a free shell, they also decided that they wanted to
  120.    make this new shell POSIX compatible, thus bash (the Bourne again
  121.    shell) was born. Like the Korn shell bash was based upon the Bourne
  122.    shells language and like the Korn shell, it also pinched features from
  123.    the C shell and other operating systems (in my opinion it put them
  124.    together better; guess which shell I use), but unlike the Korn shell
  125.    it is free. Bash was quickly adopted for LINUX (where it can be
  126.    configured to perform just like the Bourne shell), and is the most
  127.    popular of the free new generation shells.
  128.    
  129.    Meanwhile Tom Duff faced with the problem of porting the Bourne shell
  130.    to Plan 9, revolts and writes rc instead, he publishes a paper on it,
  131.    and Byron Rakitzis reimplements it under UNIX. With the benefit of a
  132.    clean start Rc ended up smalled, simpler, more regular and in most
  133.    peoples opinion a much cleaner shell.
  134.    
  135.    The search for the perfect shell still goes on and the latest entry
  136.    into this arena is zsh. Zsh was written by Paul Falstad while he was a
  137.    student a Princeton and suffers from slight case of feeping
  138.    creaturism. It is based roughly on the bourne shell (although there
  139.    are some minor but important differences) and has so many additional
  140.    features that I don't even think the author even knows all of them.
  141.    
  142.    Additionally rc has been enhanced to produced es, this shell adds the
  143.    ability for the user to redefine low level functions.
  144.    
  145. Deciding on a shell
  146.  
  147.    Which of the many shells you choose depends on many different things,
  148.    here is what I consider to be the most important, you may think
  149.    differently.
  150.    
  151.    How much time do I have to learn a new shell?
  152.           There is no point in using a shell with a different syntax, or
  153.           a completly different alias system if you havn't the time to
  154.           learn it. If you have the time and are presently using csh or
  155.           tcsh it is worth considering a switch to a Bourne shell
  156.           variant.
  157.           
  158.    What do I wish to be able to do with my new shell?
  159.           The main reason for switching shells is to gain extra
  160.           functionality; its vital you know what you are gaining from the
  161.           switch.
  162.           
  163.    Do I have to be able to switch back to a different shell?
  164.           If you may have to switch back to a standard shell, it is
  165.           fairly important you don't become too dependent on extra
  166.           features and so can't use an older shell.
  167.           
  168.    How much extra load can the system cope with?
  169.           The more advanced shells tend to take up extra CPU, since they
  170.           work in cbreak mode; if you are on an overloaded machine they
  171.           should probably be avoided; this can also cause problems with
  172.           an overloaded network. This only really applies to very old
  173.           systems nowadays.
  174.           
  175.    What support is given for my new shell?
  176.           If your new shell is not supported make sure you have someone
  177.           you can ask if you encounter problems or that you have the time
  178.           to sort them out yourself.
  179.           
  180.    What shell am I using already?
  181.           Switching between certain shells of the same syntax is alot
  182.           easier than switching between shells of a different syntax. So
  183.           if you havn't much time a simple upgrade (eg csh to tcsh) may
  184.           be a good idea.
  185.           
  186.    Can I afford any minor bugs?
  187.           Like most software all shells have some bugs in them
  188.           (especially csh), can you afford the problems that may occur
  189.           because of them.
  190.           
  191.    Do you need to be able to use more than one shell?
  192.           If you use more than one machine you may discover that you need
  193.           to use more than one shell regularly. How different are these
  194.           shells and can you cope with having to switch between these
  195.           shells on a regular basis. It may be to your advantage to
  196.           choose shells that are similar to each other.
  197.           
  198. Shell features
  199.  
  200.    This table below lists most features that I think would make you
  201.    choose one shell over another. It is not intended to be a definitive
  202.    list and does not include every single possible feature for every
  203.    single possible shell. A feature is only considered to be in a shell
  204.    if in the version that comes with the operating system, or if it is
  205.    available as compiled directly from the standard distribution. In
  206.    particular the C shell specified below is that available on SUNOS 4.*,
  207.    a considerable number of vendors now ship either tcsh or their own
  208.    enhanced C shell instead (they don't always make it obvious that they
  209.    are shipping tcsh.
  210.  
  211.                                      sh   csh  ksh  bash tcsh zsh  rc   es
  212. Job control                          N    Y    Y    Y    Y    Y    N    N
  213. Aliases                              N    Y    Y    Y    Y    Y    N    N
  214. Shell functions                      Y(1) N    Y    Y    N    Y    Y    Y
  215. "Sensible" Input/Output redirection  Y    N    Y    Y    N    Y    Y    Y
  216. Directory stack                      N    Y    Y    Y    Y    Y    F    F
  217. Command history                      N    Y    Y    Y    Y    Y    L    L
  218. Command line editing                 N    N    Y    Y    Y    Y    L    L
  219. Vi Command line editing              N    N    Y    Y    Y(3) Y    L    L
  220. Emacs Command line editing           N    N    Y    Y    Y    Y    L    L
  221. Rebindable Command line editing      N    N    N    Y    Y    Y    L    L
  222. User name look up                    N    Y    Y    Y    Y    Y    L    L
  223. Login/Logout watching                N    N    N    N    Y    Y    F    F
  224. Filename completion                  N    Y(1) Y    Y    Y    Y    L    L
  225. Username completion                  N    Y(2) Y    Y    Y    Y    L    L
  226. Hostname completion                  N    Y(2) Y    Y    Y    Y    L    L
  227. History completion                   N    N    N    Y    Y    Y    L    L
  228. Fully programmable Completion        N    N    N    N    Y    Y    N    N
  229. Mh Mailbox completion                N    N    N    N(4) N(6) N(6) N    N
  230. Co Processes                         N    N    Y    N    N    Y    N    N
  231. Builtin artithmetic evaluation       N    Y    Y    Y    Y    Y    N    N
  232. Can follow symbolic links invisibly  N    N    Y    Y    Y    Y    N    N
  233. Periodic command execution           N    N    N    N    Y    Y    N    N
  234. Custom Prompt (easily)               N    N    Y    Y    Y    Y    Y    Y
  235. Sun Keyboard Hack                    N    N    N    N    N    Y    N    N
  236. Spelling Correction                  N    N    N    N    Y    Y    N    N
  237. Process Substitution                 N    N    N    Y(2) N    Y    Y    Y
  238. Underlying Syntax                    sh   csh  sh   sh   csh  sh   rc   rc
  239. Freely Available                     N    N    N(5) Y    Y    Y    Y    Y
  240. Checks Mailbox                       N    Y    Y    Y    Y    Y    F    F
  241. Tty Sanity Checking                  N    N    N    N    Y    Y    N    N
  242. Can cope with large argument lists   Y    N    Y    Y    Y    Y    Y    Y
  243. Has non-interactive startup file     N    Y    Y(7) Y(7) Y    Y    N    N
  244. Has non-login startup file           N    Y    Y(7) Y    Y    Y    N    N
  245. Can avoid user startup files         N    Y    N    Y    N    Y    Y    Y
  246. Can specify startup file             N    N    Y    Y    N    N    N    N
  247. Low level command redefinition       N    N    N    N    N    N    N    Y
  248. Has anonymous functions              N    N    N    N    N    N    Y    Y
  249. List Variables                       N    Y    Y    N    Y    Y    Y    Y
  250. Full signal trap handling            Y    N    Y    Y    N    Y    Y    Y
  251. File no clobber ability              N    Y    Y    Y    Y    Y    N    F
  252. Local variables                      N    N    Y    Y    N    Y    Y    Y
  253. Lexically scoped variables           N    N    N    N    N    N    N    Y
  254. Exceptions                           N    N    N    N    N    N    N    Y
  255.  
  256. Key to the table above.
  257.  
  258.    Y      Feature can be done using this shell.
  259.           
  260.    N      Feature is not present in the shell.
  261.           
  262.    F      Feature can only be done by using the shells function
  263.           mechanism.
  264.           
  265.    L      The readline library must be linked into the shell to enable
  266.           this Feature.
  267.           
  268. Notes to the table above
  269.  
  270.     1. This feature was not in the orginal version, but has since become
  271.        almost standard.
  272.     2. This feature is fairly new and so is often not found on many
  273.        versions of the shell, it is gradually making its way into
  274.        standard distribution.
  275.     3. The Vi emulation of this shell is thought by many to be
  276.        incomplete.
  277.     4. This feature is not standard but unoffical patches exist to
  278.        perform this.
  279.     5. A version called 'pdksh' is freely available, but does not have
  280.        the full functionality of the AT&T version.
  281.     6. This can be done via the shells programmable completion mechanism.
  282.     7. Only by specifing a file via the ENV environment variable.
  283.        
  284. How to change your shell
  285.  
  286.    If you ever look at a UNIX manual page it will say that to change your
  287.    shell use chsh or passwd -s; unfortunately it often isn't as simple as
  288.    this, since it requires that your new shell is recognized as a valid
  289.    shell by the system and at present many systems do not recognize the
  290.    newer shells (the normal selection is, /bin/sh, /bin/csh and possibly
  291.    /bin/ksh). You are thus left with having to do some sort of fudge,
  292.    changing your effective login shell without changing your official
  293.    entry in /etc/passwd. You may also be left with the problem that there
  294.    isn't a compiled binary on your system , so you will have to get hold
  295.    of the shell's source and compile it yourself (Its generally best to
  296.    ask around to see if anyones done this already, since it isn't that
  297.    easy). Once done you should add in code to your old shells login file
  298.    so that it overlays your official login shell with your new shell
  299.    (remember to add the login flags to the command line, and with
  300.    csh/tcsh ensure that the overlay doesn't happen recursively since they
  301.    both read the same .login file).
  302.    
  303.    The shell can be recognized as a valid shell if the system
  304.    administrator puts it in the file /etc/shells. If this file does not
  305.    exist, it must be created and should contain all valid shells
  306.    (i.e.don't forget the traditional ones in all their forms).
  307.    
  308. WARNING
  309.  
  310.     If you do decide to change your shell you must be very careful - if
  311.    handled wrongly it can be almost impossible to correct, and will
  312.    almost certainly cause you a lot of hassle. Never make a new shell a
  313.    login shell until you have tested its new configuration files
  314.    thoroughly and then tested them once again. It is also important that
  315.    you make a full backup of your previous config files onto a floppy
  316.    disk (or a different host if you have a second account) if you have to
  317.    change any of them (which you will probably have to do if you can't
  318.    change your shell entry in /etc/passwd). You should also note that
  319.    your new shell is probably not supported by your system admin, so if
  320.    you have any problems you will probably have to look elsewhere.
  321.    
  322. Further information
  323.  
  324.    The Bourne shell, the C-Shell and the Korn Shell (if you have it) are
  325.    all distributed as standard with your UNIX operating system,
  326.    information on these should come with your operating system, bug
  327.    reports etc should be sent to your operating system vendor. The free
  328.    version of ksh, pdksh is available as ftp://ftp.cs.mun.ca/pub/pdksh/
  329.    
  330.    A commercial "compiler" (CCsh) is available for the Bourne shell, this
  331.    can provide extra speed on some applications. For more information
  332.    contact Comeau Computing 91-34 120th Street, Richmond Hill, NY, USA
  333.    11418-3214. Email comeau@csanta.attmail.com.
  334.    
  335.    Bash was written and is maintained by the Free Software Foundation,
  336.    the primary source of information for this shell is its manual page.
  337.    Bug reports should be sent to bash-maintainers@ai.MIT.Edu, while
  338.    suggestions and philosophical bug reports may be mailed to
  339.    bug-bash@ai.MIT.Edu or posted to the Usenet newsgroup gnu.bash.bug,
  340.    the source is widely available on many ftp sites, and is subject to
  341.    the GNU copyleft licence.
  342.    
  343.    Tcsh is available by ftp from ftp://ftp.deshaw.com and several other
  344.    places.
  345.    
  346.    Rc is available by ftp from ftp://viz.tamu.edu/pub/rc,
  347.    ftp://ftp.sys.utotonoto.cs/pub/rc and several other places. An FAQ
  348.    exists and is posted frequently to comp.unix.shell and other places.
  349.    The Rc mailing list may be subscribed to by sending mail to
  350.    rc-request@hawkwind.utcs.toronto.edu, this, the manual page and the Rc
  351.    FAQ are the main sources of information for this shell. The original
  352.    paper on rc is available as
  353.    http://plan9.att.com/plan9/plan9doc/7.ps.Z.
  354.    
  355.    Zsh is available by ftp from ftp://ftp.math.gatech.edu/pub/zsh and at
  356.    several mirror sites. Zsh is now maintained by the members of the zsh
  357.    mailing lists, which can be subscribed to by sending email to
  358.    zsh-announce-request@math.gatech.edu (announcements),
  359.    zsh-users-request@math.gatech.edu (users discussions) or
  360.    zsh-workers-request@math.gatech.edu (zsh hacking and development) with
  361.    a subject of "subscribe email-address", there is also an FAQ which
  362.    is posted frequently to comp.unix.shell. The manual page, the Z-shell
  363.    FAQ and the zsh-list are the main sources of information for this
  364.    shell.
  365.    
  366.    ES is available by ftp from ftp://ftp.cs.utoronto/pub/es and at
  367.    several other places, a mailing list can be subscribed to by sending
  368.    mail to es-request@hawkwind.utcs.toronto.edu and a paper about es is
  369.    at http://www.webcom.com/~haahr/es/es-usenix-winter93.html.
  370.    
  371.    Questions on any of the UNIX shells and on shell script programming,
  372.    may be posted to the Usenet newsgroup comp.unix.shell a quick response
  373.    can normally be expected, especially on subjects relating to the more
  374.    common shells.
  375.    
  376. Copyright and Disclaimer
  377.  
  378.     Copyright to this document is kept by the author, but freedom is
  379.    given to distribute it as long as no money is made from its
  380.    distribution, without the prior concent of the author. The author also
  381.    does not guarantee that the information it contains is correct,
  382.    although every effort is done to ensure that it is.
  383.    
  384.    Email relating to the content of this document should be sent to
  385.    shell-diff@looking-glass.org.
  386.    
  387.     Brian Blackmore, bnb@looking-glass.org
  388.