rsync -aP localPath user@remoteTarget:remotePath
The -P option combines –progress and –partial
The -a (--archive) option combines -rlptgoD
Add -z to compress data if it’s worth it.
rsync -aP localPath user@remoteTarget:remotePath
The -P option combines –progress and –partial
The -a (--archive) option combines -rlptgoD
Add -z to compress data if it’s worth it.