[Linux] 執行Shell Script
設定執行權
開啟user/group/other三者的執行權限chmod +x test.sh
如果需要只為某些使用者開權限可以用
chmod u+x test.sh #user
chmod g+x test.sh #group
chmod o+x test.sh #other
如果需要關掉權限
chmod -x test.sh
執行Shell
執行現在目錄下的Shell./test.sh
讓Shell在背景執行
./test.sh &
一一一一一一一一一一
$./test.sh &
[1] 10182
[1]+ Done ./test.sh
一一一一一一一一一一
顯示Shell中執行的步驟
csh -x test.sh
bash -x test.sh
By Hao★
留言
張貼留言
歡迎留言