in reply to Re^2: Count number of lines in a text file
in thread Count number of lines in a text file

Yes. But -p and -n only differ by the continue/print. Compare -p:
> perl -MO=Deparse -pe"#stuff#" LINE: while (defined($_ = <ARGV>)) { (); } continue { print $_; }
to -n:
> perl -MO=Deparse -ne"#stuff#" LINE: while (defined($_ = <ARGV>)) { (); }

-QM
--
Quantum Mechanics: The dreams stuff is made of