I use rsync to sync files between a local directory and a remote host. I also use plink to automate my SSH passphase entry.
What I can't figure out is how to use rsync with plink. This is what I think the syntax should be:
rsync -args --rsh="plink user@remote" local_dir/ :/remote_dir
But I get "Access Denied" messages. Is there a way to do this? Is it simple?
Edited to reflect what I think the syntax should look like. I had it very wrong before.