my $file = <FILE>; my @column; while (<FILE>) { @column=($file);
You only set $file once and never change it. You could assign it as part of the while conditional:
while (my $file = <FILE>) {
and please, put your code inside <code> tags and your data inside other <code> tags.
In reply to Re: How can I print all lines?
by hippo
in thread How can I print all lines?
by 345qwerty
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |