-2

可能重复:
以 ./script.sh 和 sh script.sh 运行 shell 脚本有什么区别

当您运行脚本时./yourscript.shsh yourscript.sh这之间有什么区别?

4

1 回答 1

0

运行脚本 ./yourscript.sh 时,该文件必须标记为可执行文件,并且您必须在脚本顶部声明您希望使用的 shell。例如:

#!/bin/sh
<your code here>

仅使用 sh yourscript.sh 时,不需要这些要求。

于 2012-05-01T15:01:26.040 回答