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

shell脚本调试

时间:2015-07-14 13:36:28      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:shell   linux   ubuntu   脚本调试   


1.sh -x script
这将执行脚本并显示所有变量的值


如,脚本:

#!/bin/bash
#a test about shift
if [ $# -le 0 ]
then
echo "there is no parameters"
exit 0
fi
sum=0
while [ $# -gt 0 ]
do
  sum=`expr $sum + $1`
  shift
done
echo $sum

输出:
技术分享


2.sh -n script
不执行脚本,只是检查语法模式,将返回所有的语法错误


版权声明:本文为博主原创文章,未经博主允许不得转载。若有错误地方,还望批评指正,不胜感激。

shell脚本调试

标签:shell   linux   ubuntu   脚本调试   

原文地址:http://blog.csdn.net/u012702547/article/details/46876365

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