I'm using the scp
shell command to copy huge folder of files.
But at some point in time I had to kill the running command (by Ctrl+C or kill).
To my understanding scp
copies files sequentially, so there should be only one partially copied file.
How can same scp command be resumed to not overwrite successfully copied files and to properly handle partially copied files?
P.S. I know I can do this kind of stuff in rsync, but scp is faster for me for some reason and I use it instead.