Help for this page

Select Code to Download


  1. or download this
    <$fh_in>;  # Skip header
    print $fh_out $_ while <$fh_in>;
    
  2. or download this
    <$fh_in>;  # Skip header
    { local $/; print { $fh_out } <$fh_in>; }
    
  3. or download this
    use strict;
    use warnings;
    ...
    
        print $fh_out $_ while <$fh_in>;
    }, '.');