码迷,mamicode.com
首页 > 系统相关 > 详细

1.2-shell结构以及执行

时间:2015-07-27 16:34:36      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:1.2-shell结构以及执行

shell是按照脚本命令,顺序执行。

#!/bin/bash或#!/bin/sh              /bin/sh是/bin/bash的软链接

##描述信息

ls /etc/

echo "this is a test script"

wq保存退出,文件名为test.sh   不一定要.sh结尾,主要是为了区别和维护。

2种执行方法:

1:bash test.sh    或sh test.sh

   bash -x test.sh  -x用来跟踪脚本执行过程中的状态,利于排错。

2:chmod a+x test.sh      给文件赋予执行权限

   ./test.sh     或绝对路径 /root/test.sh


1.2-shell结构以及执行

标签:1.2-shell结构以及执行

原文地址:http://llzdwyp.blog.51cto.com/6140981/1678747

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!