On Fri, 19 Aug 2005, Steve Siegfried wrote:
> My procmail logs only go back 2002, but yeah, Wednesday is the heaviest
> day for incoming:
>
> # egrep '^From ' procmail_log.200{2,3,4,5} | gawk '{print $3}' | sort | uniq -c
> 57837 Fri
> 59187 Mon
> 44542 Sat
> 45698 Sun
> 61966 Thu
> 61124 Tue
> 62476 Wed
I think your weekdays show exactly the same ordering as mine. Maybe we
should have people do this instead....
# egrep '^From ' procmail_log | gawk '{print $3}' | sort | uniq -c | sort -n -k 1,1
...so that we can quickly see how the days are sorted. People would just
have to change the name of the procmail log file.
Mike