学习shell编程 – 7.调试

#调试shell.sh脚本,每执行一步前都打印一下这一步的指令

$/bin/sh -x ./shell.sh

#若想只调试脚本里面一部分代码,需要在脚本文件里面插入调试指令

  #打开调试

  set -x

 

  if [ 1 -eq 1 ] ; then

   : 

  else

   echo not true

  fi

  #关闭调试

  set +x

#不执行脚本,只进行语法检查

$/bin/sh -nv ./shell.sh

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.