Help for this page

Select Code to Download


  1. or download this
    $result = `command`;
    
  2. or download this
    open OUTFILE, "> /path/to/outfile.txt";
    print OUTFILE $result;
    close OUTFILE;
    
  3. or download this
    system("command > /path/to/result.txt");