问题:bin/sh^M: bad interpreter: No such file or directory
原因:.sh脚本在windows系统下用记事本文件编写的。不同系统的编码格式引起的。
解决方法:修改.sh文件格式
(1)使用vi工具
vi test.sh
(2)利用如下命令查看文件格式
:set ff 或 :set fileformat
可以看到如下信息
fileformat=dos 或 fileformat=unix
(3) 利用如下命令修改文件格式
:set ff=unix 或 :set fileformat=unix
:wq (存盘退出)文章来源:https://www.toymoban.com/news/detail-475515.html
注:其实,在windows下通过git bash可以直接编写unix格式.sh!文章来源地址https://www.toymoban.com/news/detail-475515.html
到了这里,关于shell文件在linux系统无法运行,报错解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!