Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to set up a bash script that prints each command before it executes it?

That would be great for debugging purposes.

I already tried this:

CMD="./my-command --params >stdout.txt 2>stderr.txt"
echo $CMD
`$CMD`

What it's supposed to do is to print this first:

./my-command --params >stdout.txt 2>stderr.txt

and then execute ./my-command --params, with the output redirected to the files specified.

share|improve this question

3 Answers

up vote 10 down vote accepted
set -o xtrace

or

bash -x myscript.sh

This works with standard /bin/sh as well IIRC (it might be a POSIX thing then)

And remember, there is bashdb (bash Shell Debugger, release 4.0-0.4)


To revert to normal, exit the subshell or

set +o xtrace
share|improve this answer
Perfect, here's more information about this (on a page where you may find more useful information as well): Bash Hackers Wiki: Bash debugging tips - shell debug output – entropo Apr 21 '11 at 22:33

The easiest way to do this is to let bash do it:

set -x

Or run it explicitly as bash -x myscript.

share|improve this answer

set -x is fine.

Another way to print each executed command is to use trap with DEBUG. Put this line at the beginning of your script :

trap 'echo "# $BASH_COMMAND"' DEBUG

You can find a lot of other trap usages here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.