Bash – verbose debugging
Feb 09
Linux General, Linux System Administration Comments Off
When debugging bash scripts use:
set -o xtrace
to print out each line along with the regular output, as it is executed.
Software Development and Linux Systems
Feb 09
Linux General, Linux System Administration Comments Off
When debugging bash scripts use:
set -o xtrace
to print out each line along with the regular output, as it is executed.