linux下执行sh脚本,提示Command not found解决办法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下执行sh脚本,提示Command not found解决办法相关的知识,希望对你有一定的参考价值。

参考技术A 1、确保用户对文件有读写及执行权限

chmod a+x test.sh

2、然后修改文件格式(如果是从winodws搬过来的会显示dos格式,要把它改成unix格式)

(1)使用vi工具

3、最后再执行

Linux执行.sh文件,提示No such file or directory的问题的解决方法

Linux执行.sh文件,提示No such file or directory的问题
在window平台下,写好shell脚本文件,迁移到linux平台,赋过可执行权限,执行该sh文件,
却提示No such file or directory。ls 了下,确实有该文件,怎么会事呢,
难道是文件格式兼容性问题?用vim打开该sh文件,输入:
[plain]
:set ff 
回车,显示fileformat=dos,重新设置下文件格式:
[plain]
:set ff=unix 
保存退出:
[plain]
:wq 
再执行,竟然可以了。这个事情又给我提了次醒,程序尽量在linux下编写,迁移时,也许会少很多问题。

 

转自https://www.kafan.cn/edu/9850424.html

感谢大神













以上是关于linux下执行sh脚本,提示Command not found解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Linux shell 脚本提示“1: 1: command not found”

Shell 脚本执行提示:/bin/bash^M:bad interpreter:No such file or directory

Shell 脚本执行提示:/bin/bash^M:bad interpreter:No such file or directory

Linux在执行shell脚本时提示find: command not found,单独执行该命令可以正常执行

Linux下-bash: Permission denied 或者 sudo: command not found 错误

Linux执行.sh文件,提示No such file or directory的问题的解决方法