Help for this page
foreach my $line (@lines1) { @words = split (/\,/, $line); if ($words[6] > 90) { ... }
while my $line(@lines1) { @words = split (/\,/, $line,8); next if $words[6] <= 90; ...