Help for this page

Select Code to Download


  1. or download this
    cmd = args;
    
  2. or download this
    $ java GoodWindowsExec perl -le " print for @ARGV; warn @ARGV" 1 2 3
    Execing perl -le  print for @ARGV; warn @ARGV
    ...
    OUTPUT>2
    OUTPUT>3
    ExitValue: 0
    
  3. or download this
    $ java GoodWindowsExec perl -MO=Deparse -le " print \"f $_\" for @ARGV
    +; warn @ARGV" 1 2 3
    Execing perl -MO=Deparse -le
    ...
    OUTPUT>BEGIN { $/ = "\n"; $\ = "\n"; }
    OUTPUT>print f $_;
    ExitValue: 0