标签: bash
cd /tmp vim test.sh #!/bin/bash echo "test me"
我编辑了一个名为test.sh的文件。
test.sh
./test.sh test me
.表示此处/tmp的当前目录,./test.sh可以执行该目录。 为什么. test.sh也可以执行它,.和test.sh之间有几个空白空白?
.
/tmp
./test.sh
. test.sh
. test.sh test me