每次我从 Debian 的命令行使用 bash scriptname.sh
运行一个脚本时,我都会得到 Command Not found
和该脚本的结果。
这个脚本可以工作,但是对于每个空行,屏幕上总是会打印一个 Command Not Found
语句。每个空行都会导致找不到命令。
我正在从 /var
文件夹运行脚本。
剧本如下:
#!/bin/bash
echo Hello World
我通过输入以下内容来运行它:
bash testscript.sh
为什么会这样?