vote up 0 vote down star

How do I scp an entire folder into a folder of the same name without replacing the content in the destination folder? (instead, I would like to add to the contents of the destination folder)

flag

70% accept rate

1 Answer

vote up 1 vote down

Here:

rsync -azv -e ssh --delete --progress localdir/ user@remotehost:remotedir/

Note the trailing slashes — they're important.

(I have the first bit aliased to rsync-usual because I use it so often.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.