Help for this page

Select Code to Download


  1. or download this
    $foo = 'whatever';
    $bar = '42';
    system $^X, 'x.pl', $foo, $bar; # run a new "perl script args"
    
  2. or download this
    $foo = 'whatever';
    $bar = '42';
    { local @ARGV = ($foo, $bar); do 'x.pl' };