shfile
执行指定的 Shell 脚本。
格式
shfile <shell file>
说明
[root@sylixos:/root]# help shfile
execute a shell file.
shfile shell file
[root@sylixos:/root]#
此命令用来执行指定的 Shell 脚本。
样例
- 创建一个 Shell 脚本文件
[root@sylixos:/apps/test]# echo "echo 'Here is shfile!'" >test.sh
[root@sylixos:/apps/test]# ls
test.sh
[root@sylixos:/apps/test]# cat test.sh
echo 'Here is shfile!'
- 使用 shfile 命令运行脚本
[root@sylixos:/apps/test]# shfile test.sh
Here is shfile!
[root@sylixos:/apps/test]#