Brendan McAlpine writes:
> Does anyone know of or have a good cleanup script that I could take a
> look at?
> 
> I just want it to look through all mail directories and delete mail
> files that are older than 6 months.

To quote Dan Bernstein: "this is UNIX; stop acting so helpless."

find . -atime +180 -exec ls -l {} \;

-- 
David Phillips <[EMAIL PROTECTED]>
http://david.acz.org/


Reply via email to