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