1. 脚本运行时,脚本中 set -x即开启调试功能
如果只想调试一部分的脚本,可在结束为止set +x
#!/bin/bash
echo "Hello $USER,"
set -x
echo "Today is $(date %Y-%m-%d)"
set +x
1. 脚本运行时,脚本中 set -x即开启调试功能
如果只想调试一部分的脚本,可在结束为止set +x
#!/bin/bash
echo "Hello $USER,"
set -x
echo "Today is $(date %Y-%m-%d)"
set +x