在AIX上运行时,以下两个命令之间有什么区别?
/bin/sh 'ls -l -R'
/bin/sh -c 'ls -l -R'
答案 0 :(得分:10)
在AIX上,/bin/sh
默认为Korn Shell(ksh)。
/bin/sh 'ls -l -R'
使用ksh,它运行shell,告诉它执行名为ls -l -R
的脚本(在当前目录或路径上)。如果找不到具有此名称的脚本,ksh会将该参数视为命令并运行它。
请注意,使用bash时,如果找不到脚本,则会导致错误。
/bin/sh -c 'ls -l -R'
这将启动shell的新实例,告诉它运行命令ls -l -R
。
答案 1 :(得分:5)
(这是对Phil Ross的回应,但我需要格式化:)
使用我的一个Linux帐户:
sh> /bin/sh --version
GNU bash, version 3.2.39(1)-release (i386-redhat-linux-gnu)
Copyright (C) 2007 Free Software Foundation, Inc.
sh> /bin/sh 'ls -l -R'
/bin/sh: ls -l -R: No such file or directory
sh> /bin/sh ls
/bin/ls: /bin/ls: cannot execute binary file
sh> /bin/sh -c 'ls -l | head -1'
total 147296
sh>
使用我的一个Cygwin安装:
sh> /bin/sh --version
GNU bash, version 3.2.49(23)-release (i686-pc-cygwin)
Copyright (C) 2007 Free Software Foundation, Inc.
sh> /bin/sh 'ls -l -R'
/bin/sh: ls -l -R: No such file or directory
sh> /bin/sh ls
/usr/bin/ls: /usr/bin/ls: cannot execute binary file
sh> /bin/sh -c 'ls -l | head -1'
total 264744
sh>
您的/bin/sh
可能会有所不同,但这似乎是恰当的行为:
有关详细信息,请键入
man sh