UNIX常用shell

/bin/sh Bourne shell
它是Unix的默认Shell,也是其它Shell的开发基础。Bourne Shell在编程方面相当优秀,但在处理与用户的交互方面不如其它几种Shell

/bin/csh C shell
它提供了Bourne Shell所不能处理的用户交互特征,如命令补全、命令别名、历史命令替换等。但是,C Shell与Bourne Shell并不兼容

/bin/ksh Korn shell
它集合了C Shell和Bourne Shell的优点,并且与Bourne Shell向下完全兼容。Korn Shell的效率很高,其命令交互界面和编程交互界面都很好

/bin/bash Bourne Again Shell
它是Linux系统中一个默认的Shell。Bash不但与Bourne Shell兼容,还继承了C Shell、Korn Shell等优点

/bin/tcsh TENEX/TOPS C shell

原文地址:https://www.cnblogs.com/zhangxuechao/p/11709702.html