问题描述
在 Windows 下写的 shell 脚本,在 Linux 下无法执行,错误一般都是:bad interpreter: No such file or directory
或者 unexpected end of file
原因
造成这种情况的原因是由于 windows 下文本文件的保存格式与 unix 下不同造成的,windows 下回车字符是 \r\n
,而 unix 下是 \n
解决方法
在 unix 系统下,使用 vim 编辑文件,在命令模式下使用 set ff
查看文件格式(doc 或 unix);如果为 doc,则使用 set ff=unix
将文件格式设置为 unix 即可解决上述问题。