📜  “set -x” - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:26.548000             🧑  作者: Mango

代码示例1
#Following command enables debugging printing each executed command in 
# the terminal
set -x
#Following command disables the debugging option in the run of the script
set +x