Sorry, please forgive the tirade, I don't know what came over me. It must be the ghost of Abigail-II...Certainly TIMTOWTDI. (I find many of my cow-orkers skip over the "gather requirements" phase of programming, and jump headfirst into the shallow end of the implementation pool.)
While playing with this, I wanted to check how similar schemes work. For instance, don't do this either:
I tried this on a 300MB file, which took a long time (I waited several minutes before killing it), lots of memory, and started swapping to disk.perl -e 'print scalar(()=<>),"\n"' filename
I tried the following on the same 300MB file, which took about 10 seconds, and never went above 2MB memory:
Inside a script, you could do this:perl -pe "}{$_=$." filename
(yes, that compiles and runs too) though you may prefer the more conventional#!/your/perl/here -p }{$_=$.
If you want to get fancy, and feed it more than one file at a time, keeping track of each file, try this:#!/your/perl/here use strict; use warnings; while (<>) {} print "$.\n";
Someone will ask me for command line arguments to leave off the filenames, and provide summary statistics for multiple files. I'll leave that to OMAR. (Wow, there really is an OMAR! But he doesn't write much :(#!/your/perl/here use strict; use warnings; my $file_count = @ARGV; while (<>) {} continue { if (eof) { # print file names for multiple files print "$ARGV: " if ($file_count > 1); print "$.\n"; close ARGV; } }
-QM
--
Quantum Mechanics: The dreams stuff is made of
In reply to Re^2: Count number of lines in a text file
by QM
in thread Count number of lines in a text file
by Scott7477
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |