http://www.perlmonks.org?node_id=988758


in reply to Re^2: Looking for pointers or optimizations.
in thread Looking for pointers or optimizations.

open (INP, "<", "$filename") or die "cannot open input file";

You may want to

Update: I see that the OP has done two of the three of these already -- this comment is targeted at the parent post. :-)

open (my $inputFH, "<", $filename) or die "cannot open input file: $!";

--MidLifeXis

Replies are listed 'Best First'.
Re^4: Looking for pointers or optimizations.
by nemesdani (Friar) on Aug 21, 2012 at 14:36 UTC
    Yeah, I asked for it :).
    Thanks.

    I'm too lazy to be proud of being impatient.