Help for this page

Select Code to Download


  1. or download this
    foreach(@ARGV){
      `$_`;
    }
    
  2. or download this
    foreach(@ARGV){
      /(\w*)/;
      $foo = `ls -l $1`;
    }
    
  3. or download this
    foreach(@ARGV){
      /(.*)/;
      $foo = `$1`;
    }