Answers for "activate debug bash"

0

activate debug bash

set -x #Just use this command to activate debugging within your code
## some code ... ##
set +x #Deactivate debugging

#Alternatively do
bash -x code.sh
Posted by: Guest on March-13-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language