Help for this page

Select Code to Download


  1. or download this
    my $found;
    while (<$fh>) {
    ...
       }
    }
    print while <$fh>;
    
  2. or download this
    local *_;
    my $found;
    ...
       }
    }
    print while defined($_ = $fh->getline());