korn和bash shell之间的区别

时间:2013-10-01 09:01:35

标签: bash shell unix scripting ksh

我是Unix新手。目前,我被要求了解 KornShell(ksh) Bash shell 。有人可以给我一个关于这两个的简短概述吗?

shell ”一词是否与“终端”同义?

据我所知,我可以在线阅读有关这两方面的文件。但我相信经验丰富的Unix程序员的概述将帮助我更好地理解。

2 个答案:

答案 0 :(得分:27)

从UNIX.COM发布

外壳功能

下表列出了我认为可以让您选择一个shell而不是另一个shell的大多数功能。它不是一个明确的列表,并不包含每个可能的shell的每个可能的功能。如果在操作系统附带的版本中,或者如果可以直接从标准分发编译,则该功能仅被视为在shell中。特别是下面指定的C shell是在SUNOS 4上提供的。*相当多的供应商现在提供tcsh或他们自己的增强型C shell(他们并不总是明确表示他们正在发送tcsh。

<强>代码:

                                     sh   csh  ksh  bash tcsh zsh  rc   es
Job control                          N    Y    Y    Y    Y    Y    N    N
Aliases                              N    Y    Y    Y    Y    Y    N    N
Shell functions                      Y(1) N    Y    Y    N    Y    Y    Y
"Sensible" Input/Output redirection  Y    N    Y    Y    N    Y    Y    Y
Directory stack                      N    Y    Y    Y    Y    Y    F    F
Command history                      N    Y    Y    Y    Y    Y    L    L
Command line editing                 N    N    Y    Y    Y    Y    L    L
Vi Command line editing              N    N    Y    Y    Y(3) Y    L    L
Emacs Command line editing           N    N    Y    Y    Y    Y    L    L
Rebindable Command line editing      N    N    N    Y    Y    Y    L    L
User name look up                    N    Y    Y    Y    Y    Y    L    L
Login/Logout watching                N    N    N    N    Y    Y    F    F
Filename completion                  N    Y(1) Y    Y    Y    Y    L    L
Username completion                  N    Y(2) Y    Y    Y    Y    L    L
Hostname completion                  N    Y(2) Y    Y    Y    Y    L    L
History completion                   N    N    N    Y    Y    Y    L    L
Fully programmable Completion        N    N    N    N    Y    Y    N    N
Mh Mailbox completion                N    N    N    N(4) N(6) N(6) N    N
Co Processes                         N    N    Y    N    N    Y    N    N
Builtin artithmetic evaluation       N    Y    Y    Y    Y    Y    N    N
Can follow symbolic links invisibly  N    N    Y    Y    Y    Y    N    N
Periodic command execution           N    N    N    N    Y    Y    N    N
Custom Prompt (easily)               N    N    Y    Y    Y    Y    Y    Y
Sun Keyboard Hack                    N    N    N    N    N    Y    N    N
Spelling Correction                  N    N    N    N    Y    Y    N    N
Process Substitution                 N    N    N    Y(2) N    Y    Y    Y
Underlying Syntax                    sh   csh  sh   sh   csh  sh   rc   rc
Freely Available                     N    N    N(5) Y    Y    Y    Y    Y
Checks Mailbox                       N    Y    Y    Y    Y    Y    F    F
Tty Sanity Checking                  N    N    N    N    Y    Y    N    N
Can cope with large argument lists   Y    N    Y    Y    Y    Y    Y    Y
Has non-interactive startup file     N    Y    Y(7) Y(7) Y    Y    N    N
Has non-login startup file           N    Y    Y(7) Y    Y    Y    N    N
Can avoid user startup files         N    Y    N    Y    N    Y    Y    Y
Can specify startup file             N    N    Y    Y    N    N    N    N
Low level command redefinition       N    N    N    N    N    N    N    Y
Has anonymous functions              N    N    N    N    N    N    Y    Y
List Variables                       N    Y    Y    N    Y    Y    Y    Y
Full signal trap handling            Y    N    Y    Y    N    Y    Y    Y
File no clobber ability              N    Y    Y    Y    Y    Y    N    F
Local variables                      N    N    Y    Y    N    Y    Y    Y
Lexically scoped variables           N    N    N    N    N    N    N    Y
Exceptions                           N    N    N    N    N    N    N    Y

上表的关键。

Y功能可以使用此shell完成。

外壳中没有N功能。

F功能只能通过使用shells功能来完成           机构。

L必须将readline库链接到shell才能启用           这个特征。

上表注释

1. This feature was not in the original version, but has since become
   almost standard.
2. This feature is fairly new and so is often not found on many
   versions of the shell, it is gradually making its way into
   standard distribution.
3. The Vi emulation of this shell is thought by many to be
   incomplete.
4. This feature is not standard but unofficial patches exist to
   perform this.
5. A version called 'pdksh' is freely available, but does not have
   the full functionality of the AT&T version.
6. This can be done via the shells programmable completion mechanism.
7. Only by specifying a file via the ENV environment variable.

答案 1 :(得分:4)

有ksh的开源版本。你可以在Linux上运行它。有一个较旧的OSS称为pdksh,其作用与新版ksh略有不同,这可能就是为什么人们不喜欢它。

有几个不同之处 - bash拥有ksh所做的大部分工作,还有一些额外的东西。编写为在ksh中运行的脚本很可能在bash中运行。很多差异涉及数学,变量,数组,函数等...... - bash似乎比ksh还要多得多呢

ksh is available on multiple platforms by default but bash would have to be specifically added. On the flip side though, most Linux distros come with bash and you have to add ksh if you want it.

vi样式编辑默认使用ksh而不是bash。但是,您可以在bash中键入“set -o vi”以获得相同的功能。

one reason for using ksh for scripting is, this shell is available on nearly all existing flavours of *nix. Bash is not installed by default on all *nix.