#常见的调试命令工具
1.使用bash命令参数调试
#使用
[root@game ~]# sh [-xvn] test.sh #参数解释:
-x:将执行的脚本内容输出出来,可以看到执行的过程
-n:不执行脚本,检查脚本语法是否有问题,给出错误的提示
-v:执行脚本时,先将脚本的内容输出到屏幕上,再执行脚本,如果有错误给出错误提示
#示例
使用-n参数进行语法检查
#说明:不会执行脚本,只检查有无语法错误,如果没有检测到,就无输出
[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脚本和命令语法的小工具

#常见的shell脚本错误示例
#1.中括号两端没有空格
[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调试技巧及常见的脚本错误的更多相关文章

  1. Visual Studio 调试技巧:10 篇热文汇总

    本文精选了 DotNet  2017年11月份的10篇热门文章.其中有技术分享.技术资源. 注:以下文章,点击标题即可阅读 <Visual Studio的调试技巧 > 调试技巧是衡量程序员 ...

  2. (转)Intellij IDEA 2017 debug断点调试技巧与总结详解篇

    背景:详细介绍idea的debug调试过程 Intellij IDEA 2017 debug断点调试技巧与总结详解篇

  3. shell脚本的调试技巧

    请参考文章:http://www.ibm.com/developerworks/cn/linux/l-cn-shell-debug/index.html 读后的感觉,还是用shell的选项灵活,方便. ...

  4. GDB调试技巧:总结篇

    目录 一 写在开头 1.1 本文内容 二 学习资料 三 常用命令 四 调试技巧 注:原创不易,转载请务必注明原作者和出处,感谢支持! 一 写在开头 1.1 本文内容 总结GDB调试的一些常用命令和调试 ...

  5. Linux c c++ 开发调试技巧

    看到一篇介绍 linux c/c++ 开发调试技巧的文章,感觉挺使用,哪来和大家分享. 通向 UNIX 天堂的 10 个阶梯Author: Arpan Sen, 高级技术人员, Systems Doc ...

  6. iOS开发之Xcode常用调试技巧总结

    转载自:iOS开发之Xcode常用调试技巧总结 最近在面试,面试过程中问到了一些Xcode常用的调试技巧问题.平常开发过程中用的还挺顺手的,但你要突然让我说,确实一脸懵逼.Debug的技巧很多,比如最 ...

  7. 《Debug Hacks》和调试技巧【转】

    转自:https://blog.csdn.net/sdulibh/article/details/46462529 Debug Hacks 作者为吉冈弘隆.大和一洋.大岩尚宏.安部东洋.吉田俊辅,有中 ...

  8. VS调试技巧,提高调试效率(转):

    如果你还没有使用过这些技巧,希望这篇博文能帮你发现它们. 它们学起来很容易,能帮你节省很多时间. 运行到光标(Ctrl+ F10) 我经常看见人们是这样来调试应用程序的: 他们在应用程序需要调试的代码 ...

  9. Visual Studio的调试技巧

    Visual Studio的调试技巧 [原文地址] Debugging Tips with Visual Studio 2010 [原文发表日期] 2010/8/19 10:48 AM 这是我写的关于 ...

随机推荐

  1. 银弹谷零代码开发V百科|使用技巧:Vbase技巧二则之二

    银弹谷零代码开发V百科|使用技巧:Vbase技巧二则之二 结构树设置 Vbase系统提供机构树默认展开层级和加载模式的设置. sa账号登录,默认密码8. 打开机构与权限管理—机构初始化设置菜单,选择“ ...

  2. Android SP的具体内容

    过了这么久了,看看自己的园龄都17天了,一直在总结,从未缺席,我还是很开心的,踏踏实实的完成自己能学到的. 今天学习SP SP:全称SharedPreferences,别问我为啥知道,因为打了好多遍了 ...

  3. MyBatis深入理解参数

    目录 一.快速创建mapper文件 二.parameterType 三.MyBatis 传递参数 1. 一个简单参数(掌握) 一.快速创建mapper文件 由于每个接口都要创建一个对应的mapper文 ...

  4. SpringBoot进阶教程(六十三)Jasypt配置文件加密

    数据库密码直接明文写在配置中,对安全来说,是一个很大的挑战.一旦密码泄漏,将会带来很大的安全隐患.尤其在一些企业对安全性要求很高,因此我们就考虑如何对密码进行加密.本文着重介绍Jasypt对Sprin ...

  5. Web优化躬行记(4)——用户体验和工具

    一.用户体验 用户体验(UE/UX)是指一个人使用一个特定产品.系统或服务时的行为.情绪与态度,还包含用户对于系统的功能.易用和效率的感受,因此用户体验在本质上可以视为一个人对于系统的主观感受与主观想 ...

  6. 极简 Node.js 入门 - 2.2 事件

    极简 Node.js 入门系列教程:https://www.yuque.com/sunluyong/node 本文更佳阅读体验:https://www.yuque.com/sunluyong/node ...

  7. LeetCode 309 Best Time to Buy and Sell Stock with Cooldown 解决方案

    题目描述 给定一个整数数组,其中第 i 个元素代表了第 i 天的股票价格 .​ 设计一个算法计算出最大利润.在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票): 你不能同时参与多笔 ...

  8. C#图解教程(第四版)—03—类和继承

    1 使用基类的引用 派生类的实例由  基类的实例   加上  派生类 新增的成员 组成. 派生类的  引用   指向整个类对象,包括基类部分 重点:使用对象的  基类部分的引用  来访问对象   (父 ...

  9. JS实例-全选练习

    <!DOCTYPE html><html lang="zh"><head> <meta charset="UTF-8" ...

  10. 为创建Golang GUI程序选择合适的库

    我认为在Go语言中创建GUI只有两种相对较好的方式,一是Qt,二则是Electron. 如何选择? 这要看你的需求.如果你会HTML+CSS+JavaScript,只想使用Go开发对性能没有多高的程序 ...