本文摘自PHP中文网,作者不言,侵删。
如何调试shell脚本?我们可以在shell脚本中使用“set-xv”命令或在执行脚本时在命令行上使用-xv来调试shell脚本。
通过添加命令来调试Shell脚本:
1 2 3 4 5 6 | #!/bin/bash
set -xv #<< This will enable debugcd /var/log/
for i in "*.log" ; do
du -sh $i
done
|
执行上面的脚本并观察输出:
输出:
1 2 3 4 5 6 7 8 9 10 11 12 | cd /var/log/
+ cd /var/log/
for i in "*.log" ; do
du -sh $i
done
+ for i in '"*.log"'
+ du -sh boot.log mysqld.log post111.log post1121.log yum.log
0 boot.log
32K mysqld.log
0 post111.log
0 post1121.log
4.0K yum.log
|
使用选项调试shell脚本:
阅读剩余部分
相关阅读 >>
adb shell是什么意思
shell脚本实现的乘法表实例
shell--标准输入输出(read&echo)
如何在shell脚本中为用户分配密码
详细讲解linux shell中的printf的用法
linux怎么执行shell脚本
shell一个空格引起的异常
freeworld.posterous.com linux bash shell cheat sheet----autho:raphael
有关linux中shell内置判断语句的介绍
linux终端执行shell脚本时提示权限不足
更多相关阅读请进入《shell》频道 >>
转载请注明出处:木庄网络博客 » 如何调试shell脚本?