Help for this page

Select Code to Download


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