bad interpreter: No such file or directory

经常会遇到这种情况,在windows下写的脚本,代码会在linux下无法执行,错误就是: bad interpreter: No such file or directory

1.原因
这通常都是由于windows下对文本文件的保存格式与unix下不同造成的,windows下回车的字符是'\r\n',而linux下是'\n'
2,解决方法
vim file
在命令模式下,输入 :set ff?
查看文件格式为dos或者unix
:set ff=unix
:wq
保存退出,即可。

posted on 2015-05-02 01:12  遠離塵世の方舟  阅读(293)  评论(0编辑  收藏  举报

导航