in reply to Re: Count number of lines in a text filein thread Count number of lines in a text file
perl -le 'open FILE, "/etc/passwd"; @_=<FILE>; print $.' [download]
perl -lne 'END{print $.}' /etc/passwd [download]