Help for this page

Select Code to Download


  1. or download this
            while (<$infile>) {
                chomp;
    ...
                $line_count++;
            }
            close $infile;
    
  2. or download this
    my @lines = map{chomp;$_;$line_count++;} <$infile>;