1. 程式人生 > >Linux執行.sh檔案,提示No such file or directory的問題的解決方法

Linux執行.sh檔案,提示No such file or directory的問題的解決方法

今天遇到了個奇怪的問題,就是再linux中執行shell 死活載入不到/etc/profile

直接執行source  /etc/profile 沒問題

但是在shell中執行就不行

查詢發現是檔案格式有問題。

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