you probably want something like this
while(<IN>){
my $line = $_;
No. Nobody wants something like that.
Why store the same value in two different variables when you only use one variable inside the loop.
Perhaps you meant:
while ( my $line = <IN> ) {
In reply to Re^2: Why is there only one column in the output file?
by jwkrahn
in thread Why is there only one column in the output file?
by perllearner007
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |