centos怎么执行脚本
时间:2022-02-28 15:07
方法一:切换到shell脚本所在的目录(此时,称为工作目录)执行shell脚本 方法二:以绝对路径的方式去执行bash shell脚本 方法三:直接使用bash 或sh 来执行bash shell脚本 或 方法四:在当前的shell环境中执行bash shell脚本 或 推荐教程:centos教程 以上就是centos怎么执行脚本的详细内容,更多请关注gxlcms其它相关文章!cd /data/shell
./hello.sh
/data/shell/hello.sh
cd /data/shell
bash hello.sh
cd /data/shell
sh hello.sh
cd /data/shell
. hello.sh
cd /data/shell
source hello.sh