赞
踩
vim test.sh
#! /bin/bash
echo 'hello world';
[root@root ~]# ./test.sh
-bash: ./test.sh: 权限不够
chmod +x ./test.sh #使脚本具有执行权限
./test.sh #执行脚本
2)使用命令 source test.sh
执行
3)使用命令 sh test.sh
执行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。