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

I'm trying to get quoted parameters of a bash script to safely be received by a nested script. Any ideas?

test.sh

#!/bin/bash
echo $*
bash myecho.sh $*

myecho.sh

#!/bin/bash
 echo $1
 echo $2
 echo $3
 echo $4

Sample:

bash test.sh aaa bbb '"ccc ddd"'

Result:

aaa bbb "ccc ddd"
aaa
bbb
"ccc
ddd"

Wanted result

aaa bbb "ccc ddd"
aaa
bbb
ccc ddd
share|improve this question
I was just about to ask that question! Good timing. – Scottie T Jan 15 '09 at 21:01

2 Answers

up vote 20 down vote accepted
#!/bin/bash
echo $*
bash myecho.sh "$@"

Note the "$@" construct is not bash specific and should work with any POSIX shell (it does with dash at least). Note also that given the output you want, you don't need the extra level of quoting at all. I.E. just call the above script like:

./test.sh 1 2 "3 4"
share|improve this answer
"$@" works with any Bourne shell or Bourne shell derivative (from 1978 onwards), including Korn and Bash. Probably 95% of the time, using "$@" is correct and $* is wrong. – Jonathan Leffler Jan 16 '09 at 8:03

You want to use "$@" (quoted dollar at) to pass parameters to a subscript. Like so ....

ls-color.sh:

#!/bin/bash
/bin/ls --color=auto "$@"    # passes though all CLI-args to 'ls'


As to why.....

From the Bash man page:

$* -- Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, it expands to a single word with the value of each parameter separated by the first character of the IFS special variable. That is, "$*" is equivalent to "$1c$2c...", where c is the first character of the value of the IFS variable. If IFS is unset, the parameters are separated by spaces. If IFS is null, the parameters are joined without intervening separators.

$@ -- Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, each parameter expands to a separate word. That is, "$@" is equivalent to "$1" "$2" ... If the double-quoted expansion occurs within a word, the expansion of the first parameter is joined with the beginning part of the original word, and the expansion of the last parameter is joined with the last part of the original word. When there are no positional parameters, "$@" and $@ expand to nothing (i.e., they are removed).


Setting up some demo scripts ...

echo 'echo -e "$$1=$1\n$$2=$2\n$$3=$3\n$$4=$4"' > echo-params.sh
echo './echo-params.sh $*' > dollar-star.sh
echo './echo-params.sh $@' > dollar-at.sh
echo './echo-params.sh "$*"' > quote-dollar-star.sh
echo './echo-params.sh "$@"' > quote-dollar-at.sh
chmod +x *.sh

./echo-params.sh aaa "bb bb" '"ccc ddd"'
  # $1= aaa
  # $2= bb bb
  # $3= "ccc ddd"
  # $4=

$* / $@ - outside of quotes, will strip one level of escaping off the arguments (rarely what you intended):

./dollar-star.sh aaa "bb bb" '"ccc ddd"'
  # $1= aaa
  # $2= bb                  
  # $3= bb
  # $4= "ccc
./dollar-at.sh aaa "bb bb" '"ccc ddd"'
  # $1= aaa
  # $2= bb
  # $3= bb
  # $4= "ccc

"$*" - inside quotes, smashes the args into a single string (~2% of the time you actually want this behavior):

./quote-dollar-star.sh aaa "bb bb" '"ccc ddd"'
  # $1= aaa bb bb "ccc ddd"   
  # $2=                     
  # $3=             
  # $4=

"$@" - inside quotes, becomes an identity transform for re-passing args to a subshell (~98% of the time, this is what you meant to do):

./quote-dollar-at.sh aaa "bb bb" '"ccc ddd"'
  # $1= aaa
  # $2= bb bb             
  # $3= "ccc ddd"  
  # $4=
share|improve this answer
4  
+1 for explaining why $@ is preferable to $* – chepner Jan 22 '12 at 16:09

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.