shell调试
Shell脚本调试选项
Shell本身提供一些调试方法选项:
- 在命令行提供参数:
$sh -x script.sh
- 脚本开头提供参数:
#!/bin/sh -x
- 在脚本中用set命令启用or禁用参数:其中
set -x
表示启用,set +x
表示禁用。
set命令的详细说明: - http://man.linuxde.net/set - https://www.runoob.com/linux/linux-comm-set.html
https://www.cnblogs.com/anliven/p/6032081.html
最后更新:
2022-06-08