Re: Indexing email messages

From: Bill Jones <jonesw_at_no.spam.please>
Date: Mon Sep 10 2007 - 14:24:02 CST

Steven Kurylo wrote:
> I've since changed my bash script to something like
>
> find -ctime -90 > ~/list
> split -l 20000 ~/list splitlist-
> for section in `ls splitlist-*`; do
> ( for file in `cat $section`; do
> grep -l $ID $file;done > result.$section)&
> done;

equivalent to find -ctime -90 | while read file ; do fgrep -l "$ID"
$file ; done

but still scales badly with the number of IDs.

>>I index my mail with a tool called mairix
>
> Thanks Jason, that looks promising.

The Canadian Tire Guy would approve.
Received on Mon Sep 10 14:59:04 2007

This archive was generated by hypermail 2.1.8 : Mon Sep 10 2007 - 15:13:47 CST