shell腳本執(zhí)行l(wèi)inux命令, 在linux下,shell腳本執(zhí)行命令有四種主要方式,如下所示:
模式1:
切換到shell腳本所在的目錄(也稱為工作目錄)來執(zhí)行shell腳本。具體代碼是:
cd /data/shell
./hello.sh
模式2:
可以在絕對路徑下執(zhí)行bash shell腳本,具體代碼是:
/data/shell/hello.sh
模式3:
可以選擇直接使用bash命令或者sh命令來執(zhí)行bash shell腳本。具體代碼是:
cd /data/shell
bash hello.sh
或者
cd /data/shell
sh hello.sh
模式4:
您還可以選擇在當前shell環(huán)境中執(zhí)行bash shell腳本。具體代碼是:
cd /data/shell
. hello.sh
或
cd /data/shell
source hello.sh
注意:前三種執(zhí)行shell腳本的方式需要在當前shell(即父shell)打開的子shell環(huán)境中執(zhí)行,完成后會關(guān)閉并返回到原shell,但第四種方式是直接在當前shell中執(zhí)行。
shell腳本執(zhí)行l(wèi)inux命令,以上就是本文為您收集整理的shell腳本執(zhí)行l(wèi)inux命令最新內(nèi)容,希望能幫到您!更多相關(guān)內(nèi)容歡迎關(guān)注。