Re: pruning old files

2002-10-22 Thread tim . conway
cc: (bcc: Tim Conway/LMT/SC/PHILIPS) Subject:Re: pruning old files Classification: On Tue, Oct 22, 2002 at 08:34:42AM +0200, Michael Salmon wrote: > On Tuesday, October 22, 2002 09:46:36 AM +0900 Shinichi Maruyama > <[EMAIL PROTECTED]> wrote: > +---

Re: pruning old files

2002-10-21 Thread jw schultz
On Tue, Oct 22, 2002 at 08:34:42AM +0200, Michael Salmon wrote: > On Tuesday, October 22, 2002 09:46:36 AM +0900 Shinichi Maruyama > <[EMAIL PROTECTED]> wrote: > +-- > | > | jw> In the past i found that using find was quite good for this. > | jw> Use touch to create a file with a mod_time just

Re: pruning old files

2002-10-21 Thread Michael Salmon
On Tuesday, October 22, 2002 09:46:36 AM +0900 Shinichi Maruyama <[EMAIL PROTECTED]> wrote: +-- | | jw> In the past i found that using find was quite good for this. | jw> Use touch to create a file with a mod_time just before you | jw> started the last sync. Then from inside $src run | jw> f

Re: pruning old files

2002-10-21 Thread Shinichi Maruyama
bhards> > --exclude-older=SECONDs bhards> > exclude files older than SECONDs before bhards> Define "older"? bhards> Do you mean atime, mtime or ctime? I think mtime is natural like traditional find's -newer or -mtime. Of course it may good to be able to specify them, if someon

Re: pruning old files

2002-10-21 Thread Brad Hards
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 22 Oct 2002 10:46, Shinichi Maruyama wrote: > jw> In the past i found that using find was quite good for this. > jw> Use touch to create a file with a mod_time just before you > jw> started the last sync. Then from inside $src run > jw> find

pruning old files

2002-10-21 Thread Shinichi Maruyama
jw> In the past i found that using find was quite good for this. jw> Use touch to create a file with a mod_time just before you jw> started the last sync. Then from inside $src run jw> find . -newer $touchfile -print|cpio -pdm $dest For pruning, how about to add the feature to rsync. Is it