Sunday, December 22, 2013

Reminder, download big files via ssh

When downloading (uploading) big enough file via ssh scp is not the best solution while after termination one needs to resume upload.
Solution
rsync --inplace -P -e "ssh -i key.pem" IN OUT
Note the --inplace parameter.

No comments:

Post a Comment