in reply to Re: Parsing error
in thread Parsing error
Also, don't use a BAREWORD filehandle, add $ to make it a variable and declare it with "my":
open my $FH, "<", $input or die "Can't open $input: $!";
In Section
Seekers of Perl Wisdom