How to resume scp with partially copied files? [closed]
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 By default, rsync will delete any partially transferred file if the transfer is interrupted. In some circumstances it is more desirable to keep partially transferred files. Using the –partial option tells … Read more