[Unison-hackers] unison more memory efficient than rsync?

Geoffrey Alan Washburn geoffw at cis.upenn.edu
Tue Dec 13 13:13:25 EST 2005


Wout Mertens wrote:

> You can always do the rsync a directory at a time. E.g. if you had
> 
>     # rsync -a / target:/backup
> 
> instead do
> 
>     # find / -mindepth 1 -maxdepth 1 -exec rsync -aR {} target:/ 
> backup \;
> 
> or even
> 
>     # find / \! -type d -mindepth 1 -maxdepth 1 -exec rsync -aR {}  
> target:/backup \;
>     # find / -mindepth 2 -maxdepth 2 -exec rsync -aR {} target:/ 
> backup \;

	Ah, not a bad idea.  I'll have to experiment with that a little.    Thanks!



More information about the Unison-hackers mailing list