Help for this page

Select Code to Download


  1. or download this
    while (sysread FILE, $buffer, 4096) {
            $lines += ($buffer =~ tr/\n//);
        }
    
  2. or download this
    while (<FILE>) {
      $lines++
    }