procmail
[Top] [All Lists]

Re: counting msgs in mbox

2003-10-08 14:43:46
On Wed, Oct 08, 2003 at 03:13:26PM -0500, Robert A. Hayden wrote:

grep "^From: " /var/spool/mail/rhayden | wc -l

Not all that hot, Robert, if a good try.  For one thing, there's
no need for grep piped to wc.  You can use the -c option with
grep:

  COUNT = `grep -c '^From:' $MAIL`

(Note that I took your space out.  There is no RFC requirement for a
space, and it also could be a tab.)  But as you state, it's easy to fool
that test.

I really like "formail -s echo | wc -l" so far, which Steve Talley
just posted.  Bart's version is also intersting.

-- 
dman

_______________________________________________
procmail mailing list
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail

<Prev in Thread] Current Thread [Next in Thread>