如果我输入bash -i release_script.sh
它就会开始处理脚本
如果我输入bash --login -i release_script.sh
我会得到错误:
bash:release_script.sh:没有此文件或目录
我不明白为什么突然间它甚至不能寻找脚本。错误消息是否不准确,或者我是否遗漏了一些非常明显的信息?
答案1
如果您使用 Cygwin Bash,您可以直接调用该脚本。
$ cd /tmp
$ echo 'echo Hello World!' > hello.sh
$ ./hello.sh
Hello World!