Steven Kurylo wrote:
> Right now I have about a 180 message ids I need to find in there, but
> I do know most of them are recent:
>
> for i in `cat ~/message.ids.clean`;do echo START;echo $i; find -ctime
> -90 -exec grep -l $i {} \;;echo END;done > ~/results
Why would you do the "find -ctime -90" multiple times? It's wasted
work. Do it once, and store the results in a file.
I would then dump out the filename and message ID for each of the new
messages, then match your known message IDs against that.
Chris
Received on Mon Sep 10 12:54:03 2007
This archive was generated by hypermail 2.1.8 : Mon Sep 10 2007 - 12:54:07 CST