I have been using 'bash' since the time I have been using Unix- Linux/Solaris. Now, I am interested to know what do shells like 'ksh','zsh' offer better? What do 'geeks' use?
|
|
|
|
|
|
|
I'm partial to zsh (it's like a blend of ksh and bash). The guide has a nice overview of its features. This page has a nice chart showing the availability of different features in different shells. |
||
|
|
|
I had one rigged up to provide per-session shell history. The unique thing here was each window had its own shell history. Quite convenient. |
||||||
|
|
|
I use ksh93 by preference. This means that the basics of ksh are available on pretty much any system I find myself on, so my interactive experience and 98% of my complex profile stay the same. |
||
|
|
|
Personally, I prefer bash, because it is installed on almost every unix-compatible OS, it is very versatile, and is a good compromise between a simple command-line tool and a scripting language. |
||
|
|
|
|
Avoid |
||
|
|
|
|
In my experience, there are very few goodies in standard Unix shells (where that means, to me, OTOH, if you want to deal with portability, you will probably use I really like the POSIX
(That was not fun in Markdown!). One major reason for liking it is that it is much, much easier to nest the calls:
Getting that right on one line with back-ticks is silly enough that you would not attempt to make it into a one-liner. That's in |
||
|
|
|
|
Bash is best to know for the most broad compatibility, you can sit at basically any Unix and it will be there. Zsh is one of the most modern shells, probably. There's all kinds of crazy fun stuff you can do with it |
||
|
|
|
|
If you're using bash and you're happy with it, no need to change right away. It's a good shell. Knowing the history of it tells you something about it too: Bourne Again SHell. It was a good attempt to make a better shell than the C-Shell and its derivatives (like tcsh), allowing you to use /bin/sh syntax for scripting (or for interactive use), but adding some of the nicer features of csh (like history and so on). The Korn shell and Bash have a lot in common, in concept anyway. Like /bin/sh, the Korn shell came from AT&T originally, and wasn't open sourced until relatively recently. It has a good history mechanism, and does file locking on history state files so that if they're mounted on network file servers, multiple copies of the shell will properly write to the history file without clobbering each other. It also supports /bin/sh syntax, and incorporates some of the good things about /bin/csh. There's a lot to ksh, and it's generally a pretty good shell, if you can find it. I used to use it on Solaris, especially back when I was working at Sun. I didn't want to install anything that didn't come with the OS, since I installed a new OS several times a week, so this was a good choice. Now I use either Bash or zsh. I prefer zsh because of its rich set of features for command completion and for writing shell functions in general (for my interactive shells -- when programming scripts, I stick to pretty standard Bourne shell stuff). As others have said, it's best to avoid any version of the C-shell, except for those shells that give you some features of /bin/csh but aren't derived from /bin/csh code. |
||
|
|
