in reply to Re^3: file handling
in thread file handling

That's because the method is called getline. :)

while ( my $line = $fh->getline ) {

Replies are listed 'Best First'.
Re^5: file handling
by ikegami (Patriarch) on Jul 10, 2008 at 08:36 UTC
    That needs to be
    while ( defined( my $line = $fh->getline ) ) {

    defined is automatically added in some cases. That's not one of them.