Linux中set -x 与 set +x命令的使用
作者:互联网
一、作用
set -x 与 set +x命令的作用实际是用于输出详细日志,是Shell脚本中使用echo命令输出的替代方案。更适用于输出大量日志的场景使用
set -x 是开启,set +x是关闭,set -o是查看 (xtrace,追踪一段代码的显示情况)
二、用法
# activate debugging from here
set -x
中间脚本逻辑
# stop debugging from here
set +x
标签:debugging,set,输出,here,命令,Linux,日志 来源: https://blog.csdn.net/sinat_34241861/article/details/122026064