/bin/bash^M: bad interpreter: No such file or directory问题

前端之家收集整理的这篇文章主要介绍了/bin/bash^M: bad interpreter: No such file or directory问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考:https://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf

vi/vim 编辑文件

:set ff=unix
:x

用git批量修改

前提:批量修改文件在一个目录下,且不在git仓库中

git config –global core.autocrlf true
git init
git add .
git commit -m “..”
git config –global core.autocrlf true
git rm –cached -r .
git reset –hard

感谢景帅!

原文链接:https://www.f2er.com/bash/389311.html

猜你在找的Bash相关文章