command "$@" #### command $* #### #!/bin/sh perl -e "use Data::Dumper; print Dumper \@ARGV" $* #### [sstone@ernie1 scratch]$ sh test.sh 1 2 "3 and more stuff" $VAR1 = [ 1, 2, 3, 'and', 'more', 'stuff' ]; [sstone@ernie1 scratch]$ #### #!/bin/sh perl -e "use Data::Dumper; print Dumper \@ARGV" "$@" #### [sstone@ernie1 scratch]$ sh test.sh 1 2 "3 and more stuff" $VAR1 = [ 1, 2, '3 and more stuff' ]; [sstone@ernie1 scratch]$ #### ------------ :Wq Not an editor command: Wq