Linux运行脚本./XXXsh: line 1: $‘\r‘: command not found问题
Linux运行脚本./XXXsh: line 1: $‘\r‘: command not found问题
在执行./xxx.sh命令时,系统报错:
./xxx.sh: line 1: $’\r’: command not found
问题原因
出现这种问题是因为windows下的文件换行用的是\r\n 而linux系统用的是\n,如果win下的文档上传到linux,每行的结尾都会出现一个^M
方法:
通过vim -b xxx.sh对脚本进入编辑模式,然后删除^M进行保存,再执行就ok了;
去除Shell脚本的\r字符:
sed -i 's/\r//' 文件名
sed -i 's/\r//' one-more.sh
dos2unix 文件名
dos2unix one-more.sh
dos2unix: converting file one-more.sh to Unix format ...
错误:-bash: dos2unix: command not found
说明dos2unix还没有安装,运行如下命令进行安装:yum install -y dos2unix
转自:https://blog.csdn.net/wq_14365327/article/details/128643899
出现
报错"SYNTAX ERROR NEAR UNEXPECTED TOKEN `$'\R''
这里可以直接使用sed命令进行替换,命令如下:
# sed -i 's/\r//g' test.sh