在Linux中,你可以使用sh
命令來執行Shell腳本
打開終端(Terminal)。
使用cd
命令導航到腳本所在的目錄。例如,如果你的腳本位于/home/user/scripts
目錄中,你可以輸入以下命令:
cd /home/user/scripts
sh
命令執行腳本。假設你的腳本文件名為example_script.sh
,你可以輸入以下命令:sh example_script.sh
這將執行腳本中的命令。如果腳本中有任何輸出,它將顯示在終端窗口中。
請注意,如果你的系統默認的Shell不是sh
,你可能需要使用絕對路徑來執行腳本,例如/bin/sh example_script.sh
。