1 切换到shell脚本所在目录执行shell脚本:
cd /test/shell
./test.sh
2 以绝对路径的方式执行shell脚本:
/test/shell/test.sh
3 直接使用bash或sh执行shell脚本:
cd /test/shell
bash test.sh 或者 sh test.sh
2022-12-05 20:53:48
1 切换到shell脚本所在目录执行shell脚本:
cd /test/shell
./test.sh
2 以绝对路径的方式执行shell脚本:
/test/shell/test.sh
3 直接使用bash或sh执行shell脚本:
cd /test/shell
bash test.sh 或者 sh test.sh