Help for this page

Select Code to Download


  1. or download this
    #/usr/bin/perl
    use strict;
    ...
    while (my $line = $fh_iterator->($fh)) {
        # do stuff to $line
    }
    
  2. or download this
        $line .= $fh_iterator->($fh) if $line =~ /\\\n/
    
  3. or download this
    sub fh_iterator {
        my $fh = shift;
    ...
        $line .= fh_iterator($fh) if $line =~ /\\\n/;
        return $line;
    }