Skip to content

Tag Archives: scp

Resuming an scp Upload

Uploading a file with scp is easy enough: scp [-P <port>] [-l <upload cap in Kb/s>] <file1 [file2 [file3 [...]]> user@host:path But what if you don’t finish uploading a file? This is where rsync comes in handy. You would want to use the following command: rsync [--bwlimit=<upload cap in KB/s>] -e “ssh -p <port>” –partial [...]