Help for this page

Select Code to Download


  1. or download this
    my @args = ("start",$file,$file);
    
  2. or download this
    for (@args) {
      # Apply smart-ish double quotes
      if (/ /) { $_ = qq{"$_"}; }
    };
    
  3. or download this
      $_ = '"' . $_ . '"';
      # or 
      $_ = "\"$_\"";
    
  4. or download this
    system(@args) == 0
      or warn "Couldn't launch '$file' : $!/$?/$^E";