cherishman2005 / rtc_tools

rtc ffmpeg
3 stars 0 forks source link

/bin/bash^M: bad interpreter: No such file or directory #48

Closed cherishman2005 closed 2 years ago

cherishman2005 commented 2 years ago

在执行shell脚本时提示这样的错误主要是由于shell脚本文件是dos格式,即每一行结尾以\r\n来标识,而unix格式的文件行尾则以\n来标识。 查看脚本文件是dos格式还是unix格式的几种办法。

(1)查看脚本的格式: cat -A 文件名 从显示结果可以判断,dos格式的文件行尾为^M$,unix格式的文件行尾为$。 (2)修改脚本的格式:vi f文件名打开文件,执行 : set fileformat=unix 设置文件为unix,然后执行:wq,保存成unix格式。

(3)再次查看脚本格式

cherishman2005 commented 2 years ago

采用dos2unix命令解决:

dos2unix build.sh 
cherishman2005 commented 2 years ago

./build.sh: line 39: syntax error near unexpected token `)'