Help for this page

Select Code to Download


  1. or download this
    my $line_count = 0;
    while (my $line = <>){
    ...
      next if ($line_count <= $last_line_read);
      # the rest of you code from the while remains the same
    }