shell脚本报错:/bin/bash^M bad interpreter No such file or directory
错误描述
具体报错信息如下:
[root@localhost test]# ./test.sh
-bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory
主要原因是test.sh是在windows下编辑然后上传到linux系统里执行的。.sh
文件的格式为dos
格式。而linux只能执行格式为unix
格式的脚本。
可以通过vi编辑器来查看文件的format格式。步骤如下:
(1)首先用vim命令打开文件
[root@localhost test]# vim test.sh
(2)在vim命令模式中使用 :set ff
命令
可以看到文件的格式为dos
修改文件format为unix
方法一:使用vi修改文件format
命令:set ff=unix
方法二:直接使用dos2unix命令修改
[root@localhost test]# dos2unix test.sh
dos2unix: converting file test.sh to UNIX format ...
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/24/shell-script-error-bin-bash-m-bad-interpreter-no-such-file-or-directory/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
shell脚本报错:/bin/bash^M bad interpreter No such file or directory
错误描述
具体报错信息如下:
[root@localhost test]# ./test.sh
-bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory
主要原因是te……
文章目录
关闭
共有 0 条评论