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.
