correction
> while ( my $line = $INPUTFILE ) {
should be:
while ( my $line = <$INPUTFILE> ) {-- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/
correction
> while ( my $line = $INPUTFILE ) {
should be:
while ( my $line = <$INPUTFILE> ) {-- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/