Friday, August 23, 2019

rsync over ssh // fastest options

rsync -aHxv --numeric-ids --delete --progress -e "ssh -T -c arcfour -o Compression=no -x" source_dir user@dest:dest_dir

This command is almost exactly what somaddict suggested on commandlinefu.com.

(Source)