2019年4月1日 星期一

How to resume scp with partially copied files?

Source https://stackoverflow.com/questions/26411225/how-to-resume-scp-with-partially-copied-files

You should use rsync over ssh
rsync -P -e ssh remoteuser@remotehost:/remote/path /local/path
The key option is -P, which is the same as --partial --progress
Other options, such -a (for archive mode), and -z (to enable compression) can also be used.

沒有留言: