如何在 shell 脚本中引用当前目录?
所以我有这个脚本,它调用同一目录中的另一个脚本:
#! /bin/sh
#Call the other script
./foo.sh
# do something ...
为此我得到了./foo.sh: No such file or directory
所以我把它改成:
#! /bin/sh
#Call the other script
foo.sh
# do something ...
但这会调用foo
默认情况下位于 PATH 中的脚本。这不是我想要的。
所以问题是,./
在 shell 脚本中引用的语法是什么?