You are not logged in.
I want to rsync from server/dir to local/dir. local/dir is an outdated sync of server/dir. I would like to perform a sync but actually download the necessary files for the sync to a different directory than local/dir.
Basically: compare server/dir and local/dir, download the necessary updates to local/some-other-dir.
It doesn't seem as if rsync has this functionality built in, but it's possible I'm missing something.
How could I do this?
Offline
Offline
My question is more complex than a standard backup procedure, I don't see anything about my question in the wiki.
Basically, I compare A to B but actually perform the backup to location C.
Offline
You could just write a small script that uses rsync to first find out what needs to be copied first (--list-only) then use it to copy the files that were listed to a different directory.
Offline
Thanks, I'll look into that.
Offline