shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory --引用自http://blog.csdn.net/xiaaiwu/article/details/49126777

windows下编辑然后上传到linux系统里执行的。.sh文件的格式为dos格式。而linux只能执行格式为unix格式的脚本。

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

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

  1. [root@localhost test]# vi test.sh

2.在vi命令模式中使用 :set ff 命令

shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory  --引用自http://blog.csdn.net/xiaaiwu/article/details/49126777

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

shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory  --引用自http://blog.csdn.net/xiaaiwu/article/details/49126777

3.修改文件format为unix

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

命令:set ff=unix

shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory  --引用自http://blog.csdn.net/xiaaiwu/article/details/49126777

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

shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory  --引用自http://blog.csdn.net/xiaaiwu/article/details/49126777

上一篇:运行shell脚本报/bin/bash^M: bad interpreter错误排查方法


下一篇:常见的js dom操作