My problem is similar to the one described in this question. I want to compare a directory to another, and store the differences in a third one. The difference is that in my case the first directory is on a remote server, and --compare-dest
does not seem to work with remote directories.
What I tried is
rsync -vain --compare-dest=remote-host:/home/gerry/test/ /home/gerry/test/ /home/gerry/testDiff/
But I 'm getting an error like this:
--compare-dest arg does not exist: remote-host:/home/gerry/test/
Am I doing it wrong or isn't it possible at all?