Tip #62 Sum numbers from a file, stdin, etc.
Throw this in your command pipeline:perl -ne '$sum += $_;}{ print "Sum: $sum\n";'
The
}{closes the
while ( <> ) {loop that Perl wraps your code in (because of the
-n) and opens a new one that will only execute after the while loop has finished. You can use this in lots of Perl one-liner tricks.
For a contrived example, to sum the sizes of files in the current directory (learn the joys of cut(1) first):
ls -l | cut -c 30-42 | perl -ne '$sum += $_;}{ print "Sum: $sum\n";'
cut grabs characters 30-42 from stdin, which happen to coincide with my file size column in ls.
- TAGS:
alias aptitude at awk bash bc cal cat cd colrm comm cp csh curl cut date dd df dialog diff dirname dpkg du fc find fuser grep gs gzip history iconv kill ksh last less ln ls lsof lynx m4 md5sum mkdir mkfifo mkisofs mv mysql nc netstat openssl OSX perl ping popd ps pushd python read redirection rm scp screen sed sort ssh stat sudo svn tail tar tee test top tr uniq vim wc wget xargs