1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > shell脚本报错问题: -bash: ./test.sh: /bin/sh^M: bad interpreter: No such file or directory

shell脚本报错问题: -bash: ./test.sh: /bin/sh^M: bad interpreter: No such file or directory

时间:2018-11-14 08:31:17

相关推荐

shell脚本报错问题: -bash: ./test.sh: /bin/sh^M: bad interpreter: No such file or directory

今天写了一个shell脚本,然后在执行的时候报错,脚本内容很简单,仅供测试:

Shell代码: #!/bin/sh

echo"testshell" 具体报错信息如下:

Shell代码: [root@localhosttest]#./test.sh

-bash:./test.sh:/bin/sh^M:badinterpreter:Nosuchfileordirectory 由于之前自己对shell不太熟悉,找同事沟通了后了解了原委,主要原因是test.sh是我在windows下编辑然后上传到linux系统里执行的。.sh文件的格式为dos格式。而linux只能执行格式为unix格式的脚本。

我们可以通过vi编辑器来查看文件的format格式。步骤如下:

1.首先用vi命令打开文件

Shell代码 : [root@localhosttest]#vitest.sh 2.在vi命令模式中使用 :set ff 命令

可以看到改文件的格式为dos

3.修改文件format为unix

方法一:使用vi修改文件format

命令:set ff=unix

执行完后再通过set ff命令查看文件格式,结果如下:

方法二:直接使用dos2unix命令修改

Shell代码: [root@localhosttest]#dos2unixtest.sh

dos2unix:convertingfiletest.shtoUNIXformat... 修改完后再次执行./test.sh,执行正确:

Shell代码: [root@localhosttest]#./test.sh

testshell

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。