方法一:
# 切换到shell脚本所在目录,且该脚本具备可执行权限
./test.sh
方法二
# 直接使用bash或sh来执行shell脚本
bash test.sh
# 或
sh test.sh
方法三
. test.sh
方法四
source test.sh
方法一:
# 切换到shell脚本所在目录,且该脚本具备可执行权限
./test.sh
方法二
# 直接使用bash或sh来执行shell脚本
bash test.sh
# 或
sh test.sh
方法三
. test.sh
方法四
source test.sh