码迷,mamicode.com
首页 > 其他好文 > 详细

Bash 中同名的内部命令和外部命令

时间:2015-09-23 19:09:23      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

昨天有个人在 bug-bash 上问:为什么 [ --help 没有输出帮助信息。有人回答他了,原因是 coreutils 提供的 [ 命令才接受 --help 选项,Bash 自己的 [ 命令不接受任何选项。当你在 Bash 里执行 [ --help 时,当然优先执行的是内部命令 [,而不是外部命令 [,执行 /usr/bin/[ --help(在我的 Mac 上是在 /bin/[)才能获得他想要的帮助信息。

其实除了 [,还有一些其它外部命令也会和 Bash 提供的内部命令同名,下面列举一下在我电脑上找到的这样的命令的名字:

[
alias
bg
cd
command
echo
false
fc
fg
getopts
hash
jobs
kill
printf
pwd
read
test
time
true
type
ulimit
umask
unalias
wait

另外,从 Bash 4.4 开始,大部分的内部命令都开始接受 --help 选项,举两个例子,比如以前的 eval 和 source 是这样的:

$ eval --help

bash: eval: --: invalid option   

eval: usage: eval [arg ...]

$ source --help

bash: source: --: invalid option

source: usage: source filename [arguments]

而在 Bash 4.4 里是这样的:

$ eval --help

eval: eval [arg ...]

    Execute arguments as a shell command.

    Combine ARGs into a single string, use the result as input to the shell,

    and execute the resulting commands.

    Exit Status:

    Returns exit status of command or success if command is null.

$ source --help

source: source filename [arguments]

    Execute commands from a file in the current shell.

    Read and execute commands from FILENAME in the current shell. The

    entries in $PATH are used to find the directory containing FILENAME.

    If any ARGUMENTS are supplied, they become the positional parameters

    when FILENAME is executed.

    Exit Status:

    Returns the status of the last command executed in FILENAME; fails if

    FILENAME cannot be read.

我在 Bash 4.4 alpha 里试了一下,仍有少部分命令不接受 --help 选项,下面是我猜的原因:先说 echo,echo --help 只能输出 --help,输出别的就有兼容性问题了。还有一些命令比如 true false :,可能是因为自古以来这些命令就不接受任何选项吧,还有 test 和 [,我就不知道为什么了。 

另外说个知识点,就是上面提问题的那个人还回贴说,我是通过 which [ 确认了在 Bash 里执行的 [ 是个外部命令的。随即有人纠正他,不能用 which 来判断一个命令是内部命令还是外部命令,因为 which 本身就是个外部命令,它的工作原理就是在 PATH 里查找外部命令,它不可能知道 [ 在 Bash 里是个内部命令,应该用 type 命令:

$ which [

/bin/[

$ type [

[ is a shell builtin

而且 type 命令还可以把内部命令和外部命令按照 Bash 的查找顺序同时列出来:

$ type -a [

[ is a shell builtin

[ is /bin/[

Bash 中同名的内部命令和外部命令

标签:

原文地址:http://www.cnblogs.com/ziyunfei/p/4832762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!