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

In a shell script how do I echo all shell commands called and expand any variable names? For example, given the following line:

ls $DIRNAME

I would like the script to run the command and display the following

ls /full/path/to/some/dir

The purpose is to save a log of all shell commands called and their arguments. Perhaps there is a better way of generating such a a log?

share|improve this question

4 Answers

up vote 56 down vote accepted

set -o verbose, or set -v, set -x seems to be the way

http://www.faqs.org/docs/abs/HTML/options.html

$ cat shl
#!/bin/bash                                                                     

DIR=/tmp/so
ls $DIR

$ bash -x shl 
+ DIR=/tmp/so
+ ls /tmp/so
$
share|improve this answer
7  
set -x expands variables as requested (and prints a little + sign before the line), set -v does not expand variables – ihadanny Feb 23 '12 at 12:39
4  
personally I like to have both i.e. set -vx to turn echoing on and set +vx to turn them both off. This way I see both the "raw" command with the variable names and how it looks after variables are replaces. Also note that it can be added used like this: #!/bin/bash -vx. – epeleg Feb 25 at 6:00

set -x will give you what you want.

Here is an example shell script to demonstrate:

#!/bin/bash
set -x verbose #echo on

ls $PWD

This expands all variables and prints the full commands before output of the command.

output:

+ ls /home/user/
file1.txt file2.txt
share|improve this answer
11  
Using the word "verbose" that way doesn't accomplish anything. You can do set -o verbose or set -v (only "verbose") or set -o xtrace or set -x (only "xtrace") or set -xv (both) or set -o xtrace -o verbose (both). – Dennis Williamson May 18 '10 at 1:03

You can also toggle this for select lines in your script by wrapping them in set -x and set +x e.g.

#!/bin/bash
...
if [[ ! -e $OUT_FILE ]];
then
   echo "grabbing $URL"
   set -x
   curl --fail --noproxy $SERV -s -S $URL -o $OUT_FILE
   set +x
fi
share|improve this answer

Another option is to put "-x" at the top of your script instead of on the command line:

$ cat ./server
#!/bin/bash -x
ssh user@server

$ ./server
+ ssh user@server
user@server's password: ^C
$

(Insufficient rep to comment on chosen answer.)

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.