Bash脚本报错:“/bin/bash^M: bad interpreter: No such file or directory”

1、问题

github下载一个源码,运行install脚本时(# ./myinstal_cp)一直报错“/bin/bash^M: bad interpreter: No such file or directory”,如:

-bash: ./myinstall_cp: /bin/bash^M: bad interpreter: No such file or directory

用bash命令执行(#  bash myinstal_cp),然后提示脚本文件出现很多\r\n的问题,仔细看脚本源码,逻辑语法都没有错误。

2、分析

仔细定位执行报错的原因,-bash: bad interpreter,脚本解释有问题,且bash执行过程中显示\r\n语法出错,联想到windows系统的编辑器是以\r\n换行的,因此,可能脚本是在windows系统编写的。

3、解决

方式1:vim打开文件,输入set ff=unix,然后保存文件即可将windows格式脚本替换为unix,可以直接执行了。

vim myinstall_cp
:set ff=unix 
:wq

方式2:根据bash执行报错的行数,在linux环境下找到结尾换行删掉,重新敲入换行。

你可能感兴趣的:(Linux)