bin bash: No such file or directory 解决方法
错误提示
./bash.sh: line 1: *!/bin/bash: No such file or directory
执行脚本报警告信息。
原因及解决方法
Windows
的回车换行(\r\n
)和Linux
的回车换行(\n
)是不同的。
安装dos2unix
:
yum install dos2unix -y
执行:
dos2unix bash.sh
重新保存文件,去掉 unicode 签名就好了。