Help for this page

Select Code to Download


  1. or download this
    open(my $output_fh, '>> myoutputfile'); 
    open(my $input_fh, '< myoutputfile');
    
  2. or download this
    my $output_fh;
    while(<$input_fh>) {
    ...
        }
    }
    close($output_fh);