linux下执行脚本(shell,python等),提示Command not found解决办法

原文地址:http://www.cnblogs.com/GordonWorld/archive/2012/03/19/2406225.html

Linux下执行.sh脚本错误:bin/sh^M: bad interpreter: No such file or directory

同样的python文件也是,即使在scripts开头指定了运行程序!

原因是脚本是在windows系统下编写的。不同系统的编码格式引起的。

转行文件的编码格式:

1、确保用户对文件有读写及执行权限

    chmod x test.sh

2、然后修改文件格式

   (1)使用vi工具

      vi test.sh

    (2)利用如下命令查看文件格式 
     :set ff 或 :set fileformat 
     可以看到如下信息 
     fileformat=dos 或 fileformat=unix 
     (3) 利用如下命令修改文件格式 
     :set ff=unix 或 :set fileformat=unix 
     :wq (存盘退出)

3、最后再执行

    ./test.sh

你可能感兴趣的:(linux)