在Mac OS10.12里面执行shell脚本时候,无法执行,错误提示:“bad interpreter: No such file or directory”,经过上网搜索,最终解决了,解决方法,首先在shell里面执行下面命令:
perl -i -pe 'y| ||d' myexe.sh
注意:上面最后是要执行的shell脚本名称,上面命令里面的"myexe.sh",是我举的例子文件名,要替换成你真正要执行的shell脚本名称!!
这个问题不仅仅在Mac OS10.12里面我遇到,在Ubuntu16.04里面我也遇到了,应该也可以用这样的方法解决!
参考:http://stackoverflow.com/questions/17131249/how-to-solve-bad-interpreter-no-such-file-or-directory