总结一篇shell调试技巧及常见的脚本错误
#使用
[root@game ~]# sh [-xvn] test.sh #参数解释:
-x:将执行的脚本内容输出出来,可以看到执行的过程
-n:不执行脚本,检查脚本语法是否有问题,给出错误的提示
-v:执行脚本时,先将脚本的内容输出到屏幕上,再执行脚本,如果有错误给出错误提示
#说明:不会执行脚本,只检查有无语法错误,如果没有检测到,就无输出
[root@game scripts]# cat test7.sh
#!/bin/bash
echo "guoke123"
[root@game scripts]# sh -n test7.sh
#脚本没有语法错误,所以没有输出 #演示脚本存在语法错误
#!/bin/bash
if [ `netstat -untpl | grep httpd | wc -l` -gt ];then
echo "httpd is Running
else
echo "httpd service down" | mail -s "httpd" @qq.com
systemctl restart httpd
fi
[root@game scripts]# sh -n test1.sh
test1.sh: line : unexpected EOF while looking for matching `"'
test1.sh: line : syntax error: unexpected end of file
#提示:第5行结尾没有双引号
-v参数:打印错误
[root@game scripts]# sh -v test1.sh
#!/bin/bash
if [ `netstat -untpl | grep httpd | wc -l` -gt ];then
echo "httpd is Running
else
echo "httpd service down" | mail -s "httpd" @qq.com
systemctl restart httpd
fi
test1.sh: line : unexpected EOF while looking for matching `"'
test1.sh: line : syntax error: unexpected end of file
-x参数:打印执行过程
#!/bin/bash
if [ `netstat -untpl | grep httpd | wc -l` -gt ];then
echo "httpd is Running"
else
echo "httpd service down" | mail -s "httpd" @qq.com
systemctl restart httpd
fi #打印执行过程
[root@game scripts]# sh -x test1.sh
++ netstat -untpl
++ wc -l
++ grep httpd
+ '[' -gt ']'
+ echo 'httpd service down'
+ mail -s httpd @qq.com
+ systemctl restart httpd
2.使用set命令调试
#常用选项
set -n :读命令但并不执行
set -v : 显示读取的所有行
set -x : 显示所有命令及其参数
#使用
使用set -x可以缩小调试的作用域范围
set -x开启调试功能,set +x关闭调试功能 #示例
#!/bin/bash
set -x
for i in `seq `
do
for n in `seq `
do
[ $i -ge $n ] && echo -en "$i x $n" = $(expr $i \* $n)
done
set +x
echo " "
done #执行效果
[root@game scripts]# sh test6.sh
++ seq
+ for i in '`seq 9`'
++ seq
+ for n in '`seq 9`'
+ '[' -ge ']'
++ expr '*'
+ echo -en '1 x 1' =
x = + for n in '`seq 9`'
+ '[' -ge ']'
.....
+ for n in '`seq 9`'
+ '[' -ge ']'
+ set +x
#提示:只调试了set -x 和set +x 这个作用域
3.echo命令调试
一般在可能出现问题的脚本的重要部分加入echo命令 #示例
[root@game scripts]# cat test8.sh
#!/bin/bash
read -p "please input tow num:" a b
echo $a $b
exit #执行效果
[root@game scripts]# sh test8.sh
please input tow num:
4.bashdb
shell调试器bashdb是一个类似GDB的调试工具,可以完成对shell脚本的断点设置、单步执行、变量观察等许多功能。
5.shellcheck
shellcheck是一个可检查sh/bash脚本和命令语法的小工具
[root@game scripts]# cat test.sh
#!/bin/bash yum install net-tools -y >/dev/null
if [$? -eq ]
then
echo "install success"
else
echo "install fail"
fi #执行:报错
[root@game scripts]# sh test.sh
test.sh: line : [: command not found
install fail
#提示:错误在第四行
#2.成对的符号没有写全,漏写
#成对的符号例如:()、[]、""、''等
#示例[]中括号没有写全
[root@game scripts]# cat test1.sh
#!/bin/bash if [ `netstat -untpl | grep httpd | wc -l` -gt ;then
echo "httpd is Running"
else
echo "httpd service down" | mail -s "httpd" @qq.com
systemctl restart httpd
fi #执行效果
[root@game scripts]# sh test1.sh
test1.sh: line : [: missing `]'
#3.if条件语句缺少结尾关键字
[root@game scripts]# cat test2.sh
#!/bin/bash if [ `netstat -untpl | grep mysqld | wc -l` -gt ];then
echo "mysqld is Running"
else
echo "mysqld service down" | mail -s "mysqld" @qq.com
systemctl restart mysqld #执行效果
[root@game scripts]# sh test2.sh
test2.sh: line : syntax error: unexpected end of file
#执行脚本会提示第8行语法错误
#4.循环语句缺少关键字
#示例1:for循环的done少了个e
[root@game scripts]# cat test3.sh
#!/bin/bash
usage(){
echo "directory not found"
} [ ! -d /test ] && usage && exit
cd /test for i in `ls`
do
echo $i
don #执行效果
[root@game scripts]# sh test3.sh
test3.sh: line : syntax error: unexpected end of file #示例2:if条件语句的then少了n
[root@game scripts]# cat test2.sh
#!/bin/bash if [ `netstat -untpl | grep mysqld | wc -l` -gt ];the
echo "mysqld is Running"
else
echo "mysqld service down" | mail -s "mysqld" @qq.com
systemctl restart mysqld
fi
#执行效果
[root@game scripts]# sh test2.sh
test2.sh: line : syntax error near unexpected token `else'
test2.sh: line : `else'
#执行脚本之后会提示语法错误,需要注意的是shell脚本解释器一般不会很精确的定位到错误,需要上下联都看一下
#总结
在进行脚本编写的过程中,应该注重书写的规范性,成对符号或是循环语句应一次写完,再写相应的内容,避免不必要的麻烦,提升开发的效率
总结一篇shell调试技巧及常见的脚本错误的更多相关文章
- Visual Studio 调试技巧:10 篇热文汇总
本文精选了 DotNet 2017年11月份的10篇热门文章.其中有技术分享.技术资源. 注:以下文章,点击标题即可阅读 <Visual Studio的调试技巧 > 调试技巧是衡量程序员 ...
- (转)Intellij IDEA 2017 debug断点调试技巧与总结详解篇
背景:详细介绍idea的debug调试过程 Intellij IDEA 2017 debug断点调试技巧与总结详解篇
- shell脚本的调试技巧
请参考文章:http://www.ibm.com/developerworks/cn/linux/l-cn-shell-debug/index.html 读后的感觉,还是用shell的选项灵活,方便. ...
- GDB调试技巧:总结篇
目录 一 写在开头 1.1 本文内容 二 学习资料 三 常用命令 四 调试技巧 注:原创不易,转载请务必注明原作者和出处,感谢支持! 一 写在开头 1.1 本文内容 总结GDB调试的一些常用命令和调试 ...
- Linux c c++ 开发调试技巧
看到一篇介绍 linux c/c++ 开发调试技巧的文章,感觉挺使用,哪来和大家分享. 通向 UNIX 天堂的 10 个阶梯Author: Arpan Sen, 高级技术人员, Systems Doc ...
- iOS开发之Xcode常用调试技巧总结
转载自:iOS开发之Xcode常用调试技巧总结 最近在面试,面试过程中问到了一些Xcode常用的调试技巧问题.平常开发过程中用的还挺顺手的,但你要突然让我说,确实一脸懵逼.Debug的技巧很多,比如最 ...
- 《Debug Hacks》和调试技巧【转】
转自:https://blog.csdn.net/sdulibh/article/details/46462529 Debug Hacks 作者为吉冈弘隆.大和一洋.大岩尚宏.安部东洋.吉田俊辅,有中 ...
- VS调试技巧,提高调试效率(转):
如果你还没有使用过这些技巧,希望这篇博文能帮你发现它们. 它们学起来很容易,能帮你节省很多时间. 运行到光标(Ctrl+ F10) 我经常看见人们是这样来调试应用程序的: 他们在应用程序需要调试的代码 ...
- Visual Studio的调试技巧
Visual Studio的调试技巧 [原文地址] Debugging Tips with Visual Studio 2010 [原文发表日期] 2010/8/19 10:48 AM 这是我写的关于 ...
随机推荐
- Linux恢复删除后数据文件
简介 在使用Linux系统时,有时候会不小心误删除数据,由于Linux系统也没有与Windows系统下回收站类似的功能,一般会认为该文件将无法找回. 本文主要以CentOS7操作系统为例,介绍如何使用 ...
- 25-Object类的使用
1.java.lang.Object类的说明: * 1.Object类是所Java类的根父类 * 2.如果在类的声明中未使用extends关键字指明其父类,则默认父类为java.lang.Object ...
- 嵌入式Linux串口编程简介
文章目录 简介 用到的API函数 代码 简介 嵌入式Linux下串口编程与Linux系统下的编程没有什么区别,系统API都是一样的.嵌入式设备中串口编程是很常用的,比如会对接一些传感器模块,这些模块大 ...
- 验证Kubernetes YAML的最佳实践和策略
本文来自Rancher Labs Kubernetes工作负载最常见的定义是YAML格式的文件.使用YAML所面临的挑战之一是,它相当难以表达manifest文件之间的约束或关系. 如果你想检查所有部 ...
- “随手记”开发记录day02
今天完成了 向瑜- 布局: 1.修改日期(√) 2.选择分类(√) 3.输入金额(√) 赵常恒- 1.登录,注册页面布局(√) 刘志霄- 1.个人信息页面规划(√)
- MinIO很强-让我放弃FastDFS拥抱MinIO的8个理由
目前可用于文件存储的网络服务选择有很多,比如阿里云OSS.七牛云.腾讯云等等,但是收费都有点小贵.为了帮公司节约成本,之前一直是使用fastDFS作为文件服务器,准确的说是图片服务器.直到我发现了Mi ...
- Vue中v-model指令的常用修饰符
v-model指令有三个可以选用的修饰符:.lazy..number以及.trim.vue官方对此的描述为: .number-输入字符串转为有效的数字 .lazy-取代input监听change事件 ...
- Mysql Column 'xxxxx' in field list is ambiguous"
使用了关联查询,两张表有相同的字段,所以说取值含糊不清: 使用别名.列名解决: 如 a.description
- Linux Docker部署
Docker 安装 卸载旧版docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ dock ...
- DRF内置过滤组件与排序组件结合使用
DRF内置过滤组件Filtering DRF提供了内置过滤组件Filtering,可以结合url路径的改变获取想要的数据,当然用户不可能在url访问路径中自己设置过滤条件,肯定是后端开发人员将前端页面 ...