Help for this page

Select Code to Download


  1. or download this
        while (<$fh_in>) {
  2. or download this
          # Keep (possibly edited) line
          print $fh_in $_;
       }
    
  3. or download this
    my @lines = <$fh_in>;
    
        for (@lines) { s/// }