in reply to Using Substitution Operator In Perl Script
while <my $line = <$fh>) {
should be
while (my $line = <$fh>) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using Substitution Operator In Perl Script
by ides (Deacon) on Aug 28, 2007 at 17:20 UTC |