#!/bin/bash - no such file or directory

Posted shiliye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#!/bin/bash - no such file or directory相关的知识,希望对你有一定的参考价值。

错误:

  #!/bin/bash - no such file or directory

原因

  Linux上的文件是忽略BOM的,因此在Linux上生成的文件也是不带BOM
  但在window下,windows记事本默认会给文件添加BOM头
  虽然肉眼是看不到BOM的,但在程序处理这些文件时,这些字符是能被识别到的
  所以看似正常的文件,程序处理却报错,以及window上看似正确的脚本在Linux下执行却报错

解决方案:

  方案1:在Linux上直接创建文件,编辑内容,Linux上生成的文件是没有BOM

  方案2:在window上进行处理,比如将文件拷贝至windows本地,使用notepad++按照如下方式进行转换,转换后再重新放到Linux上即可

     技术图片

以上是关于#!/bin/bash - no such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

#!/bin/bash - no such file or directory

/bin/bash^M: bad interpreter: No such file ordirectory

Hadoop压测失败:/bin/bash: /bin/java: No such file or directory

-bash: ./build: /bin/bash^M: bad interpreter: No such file or directory

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

shell脚本报错:-bash: xxx: /bin/bash^M: bad interpreter: No such file or directory