Help for this page

Select Code to Download


  1. or download this
    do_work ($cmd);
    
    ...
       my $command = shift;
       # do stuff here...
    }
    
  2. or download this
    do_work ($cmd, $foo);
    
    ...
       my ($command, $foo) = @_;
       # do stuff
    }