lhunath 1215597575 learn Setting the -x option on bash enables a debugging mode that makes bash output every statement before executing it. Set it by starting a script with ''bash -x ./myscript'' or putting ''set -x'' somewhere in your script. ''set +x'' turns this behaviour off. lhunath 1224761903 forget lhunath 1224761990 learn Setting the -x option on bash enables a debugging mode that makes bash output the command name and arguments that it will run (after all parsing and expansion has been applied). Set it by starting a script with ''bash -x ./myscript'' or putting ''set -x'' before the code you want to debug. ''set +x'' turns this behaviour off. geirha 1357949555 forget geirha 1357949561 learn ''set -x'' (or ''bash -x yourscript'') makes bash output the command name and arguments that it will run (after parsing and expansion). Set it by starting a script with ''bash -x ./myscript'' or putting ''set -x'' before the code to debug. ''set +x'' turns this off. To add more information, change PS4: PS4='+ $BASH_SOURCE:$FUNCNAME:$LINENO:' nDuff 1359655080 forget nDuff 1359655092 learn ''set -x'' (or ''bash -x yourscript'') makes bash output the command name and arguments that it will run (after parsing and expansion). Set it by starting a script with ''bash -x ./myscript'' or putting ''set -x'' before the code to debug. ''set +x'' turns this off. To add more information, change PS4: PS4='+ $BASH_SOURCE:$FUNCNAME:$BASH_LINENO:' nDuff 1359655258 forget nDuff 1359655269 learn ''set -x'' (or ''bash -x yourscript'') makes bash output the command name and arguments that it will run (after parsing and expansion). Set it by starting a script with ''bash -x ./myscript'' or putting ''set -x'' before the code to debug. ''set +x'' turns this off. To add more information, change PS4: PS4='+ $BASH_SOURCE:$FUNCNAME:$LINENO:' izabera 1434696999 forget izabera 1434697004 learn #redirec set-x izabera 1434697009 forget izabera 1434697012 learn #redirect set-x