bash: ./***.sh: /bin/bash^M: bad interpreter: No such file or directory的解决方法

问题描述:

在Linux下启动***.sh脚本,启动不了,提示如下:

bash: ./***.sh: /bin/bash^M: bad interpreter: No such file or directory的解决方法


原因分析:

一些人喜欢用vim来写linux命令,但是有的人喜欢在Windows下用一些方便的编辑器(如Notepad++)写好, 然后拷贝文件到linux下, 结果呢, 在执行脚本的时候, 就会出现上述的问题。


验证猜想:

使用vim ***.sh进入***.sh这个文件, 然后在底部模式下, 执行 :set ff 查看一下, 结果发现显示为fileformat=dos, 证明果然是文件格式问题,


解决方案:

方法一vim ***.sh 进入***.sh后, 在底部模式下, 执行:set fileformat=unix后执行:x或者:wq保存修改。 然后就可以执行./***.sh运行脚本了。

方法二:直接执行sed -i "s/\r//" ***.sh来转化, 然后就可以执行./***.sh运行脚本了。

方法三:直接执行dos2unix ***.sh来转化, 然后就可以执行./***.sh运行脚本了,如执行报错bash: dos2unix: command not found,请使用busybox dos2unix ***.sh继续操作。

上一篇:A Child's History of England.84


下一篇:A Child's History of England.78