Help for this page

Select Code to Download


  1. or download this
      system("$doscommand > $logfile");
  2. or download this
      open(LOG, ">$logfile") or die "$logfile: $!";
      print LOG `$doscommand`;
      close LOG;