On Sun, 2002-05-19 at 10:12, Michael Fratoni wrote:
> Or write a quick script to modify the access time on the files you want to 
> keep.
> 
> #! /bin/sh
> for file in /tmp/apache/* ; do
>   touch -a "$file"
> done
> exit

That may not keep his files from being deleted.  To touch them all, do
something like this:

#!/bin/sh
find /tmp/apache | xargs touch

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to