It can restart download (fragmentation method?).
(@rsync_dir) rsync -avzhP remote_user@remote.com:/path/to/dir ./
-a: archive -h: human redable output -z: compress (like zip) data during the transfer -v: verbose -P: –partial + –progress
In dir,
rsync -ahzv ./* remote-user@remote.com:/path/to/dir/
It will overwrite the same name file!!`
--size-only
skips files that match in size.
rsync -rvc --delete --dry-run /home/usr/dir/ host2.com:/home/usr/dir/
If you archive the files, you can preserve the permissions of the files.