linux - How to use `scp` command copy a folder while not rewrite the local file with same name? -
I am using If it is just scp to copy a folder from a remote server, though , This copy process, I am trying to re-skip, but I do not want to over-write files in that folder, which has been copied to local.
Use the text ">
rsync . The syntax is nearly identical, it also works on the SSH, and it intelligently transfers the difference between files. Example:
rsync * .jpg Hostname: yourdir
Comments
Post a Comment