Shebang 选项 ' #!/bin/csh -f '
Shebang option ' #!/bin/csh -f '
Shebang 选项 -f 有什么作用?我如何找到所有 Shebang 选项的详细解释?
#! /bin/csh -f
没有任何“shebang 选项”。
shebang 中二进制文件的任何选项。
所以这是一个 csh
选项。
具体来说(来自the man page):
-f
The shell will start faster, because it will neither search for nor execute commands from the file .cshrc in the invoker's home directory. Note: if the environment variable HOME is not set, fast startup is the default.
Shebang 选项 -f 有什么作用?我如何找到所有 Shebang 选项的详细解释?
#! /bin/csh -f
没有任何“shebang 选项”。
shebang 中二进制文件的任何选项。
所以这是一个 csh
选项。
具体来说(来自the man page):
-f
The shell will start faster, because it will neither search for nor execute commands from the file .cshrc in the invoker's home directory. Note: if the environment variable HOME is not set, fast startup is the default.