| > i copy a HUGE website once a week. every week there is a
> new directory added, but nothing else changes. is there a
> way that i can ONLY get the new directory, and skip
> everything else? it takes too long that way
Err, no.. the only hack would be to devalidate the files to
be updated in the cache (by mangling the corresponding file
entry names in hts-cache/new.ndx), and run a "--continue"
(Continue an interrupted mirror) session ; but this would
require some scripting ; such as
cat hts-cache/new.ndx | sed -e 's_/tobeupdated_/XXX_' >
_tmp && mv -f _tmp hts-cache/new.ndx
| |