1. 程式人生 > >linux下對sh檔案的基本操作總結

linux下對sh檔案的基本操作總結

1、建立test.sh檔案

touch test.sh

2、編輯sh檔案

vi test.sh

3、儲存退出

敲擊esc, 然後輸入 :wq ,回車退出

4、新增可執行許可權,當然預設就是可執行的。

chmod +x test.sh

5、執行檔案

(1)./test.sh

(2)sh test.sh

6、刪除檔案

rm test.sh