问题描述
运行脚本时报错如下:
/bin/bash^M: 解释器错误:没有那个文件或目录(bad interpreter: No such file or directiry)
原因分析
脚本文件在windows下编辑过,windows下行结尾是\n\r,而Linux下则是\n
使用cat-A filename命令可以看到结尾\r字符被显示为^M
解决方案
在终端shell输入如下命令,将脚本文件中的行尾\r替换为空白
bash
sed -i 's/\r$//' xxx.sh