Help for this page

Select Code to Download


  1. or download this
     open(OUTPUTFILE, '>$position_output_path') 
      or die "Could not open $position_output_path:$!\n";
     print OUTPUTFILE @rows;            
     close(OUTPUTFILE) 
      or die "Could not close $position_output_path:$!
    
  2. or download this
     open(OUTPUTFILE, ">$position_output_path") 
      or die "Could not open $position_output_path:$!\n";
     print OUTPUTFILE @rows;            
     close(OUTPUTFILE) 
      or die "Could not close $position_output_path:$!