Answers for "debug shell script"

2

debug shell script

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