方法一:切換到shell腳本所在的目錄(此時,稱為工作目錄)執行shell腳本
cd /data/shell ./hello.sh
方法二:以絕對路徑的方式去執行bash shell腳本
/data/shell/hello.sh
方法三:直接使用bash 或sh 來執行bash shell腳本
cd /data/shell bash hello.sh
或
cd /data/shell sh hello.sh
方法四:在目前的shell環境中執行bash shell腳本
cd /data/shell . hello.sh
或
cd /data/shell source hello.sh
推薦教學:centos教學
以上是centos怎麼執行腳本的詳細內容。更多資訊請關注PHP中文網其他相關文章!