zoukankan      html  css  js  c++  java
  • bin/sh^M: bad interpreter: No such file or directory解决

     

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

    原因:.sh脚本在windows系统下用记事本文件编写的。不同系统的编码格式引起的。

    解决方法:修改.sh文件格式
     
       (1)使用vi工具
     
          vi test.sh
     
        (2)利用如下命令查看文件格式 
         :set ff 或 :set fileformat 
         可以看到如下信息 
         fileformat=dos 或 fileformat=unix 
         (3) 利用如下命令修改文件格式 
         :set ff=unix 或 :set fileformat=unix 
         :wq (存盘退出)
     
    其实,在windows下通过git bash可以直接编写unix格式.sh!
  • 相关阅读:
    JS可改变列宽table
    无图片,用css border实现尖三角
    IE6下position:fixed;兼容
    巧用cssText属性批量操作样式
    Java
    Java
    Java
    JRebel
    Spring
    ActiveMQ
  • 原文地址:https://www.cnblogs.com/yimting/p/9682054.html
Copyright © 2011-2022 走看看