Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
      local @ARGV = @$_;
      do "myscript.pl";
    }
    
  2. or download this
    #!perl
    # myscript.pl
    ...
    print "Running myscript.pl with @ARGV \n";
    sleep 2;
    print "Finished\n";