Shakaib Sayyid [[EMAIL PROTECTED]] writes:

> Is there any way I can update after a given time stamp to a 
> destination. I want to synchronize files after a given time only.
> (...)
> Is that possible some how?
> (It would be greate if we could specify time brackets--say I want
> to rsync only between 10:00A to 11:00A).

Rsync itself doesn't do this, but it looks like all you really need to
do is build up a list of files that match your criteria and then rsync
that list of files.

So you could use 'find' (for example) to locate the files that have
the timestamps within your window of time, dump the listing of those
filenames to a text file, and then use the "--include-from" option to
use that file as a listing of files to include in the rsync.  You'd
probably want to add an explicit --include entry for "*/" to ensure
all directories are covered, and then a final --exclude="*" to exclude
any file not in your file listing.

-- David

/-----------------------------------------------------------------------\
 \               David Bolen            \   E-mail: [EMAIL PROTECTED]  /
  |             FitLinxx, Inc.            \  Phone: (203) 708-5192    |
 /  860 Canal Street, Stamford, CT  06902   \  Fax: (203) 316-5150     \
\-----------------------------------------------------------------------/

Reply via email to