rsync -auhzvHX --compress-level=9 --numeric-ids -e "ssh -T -c aes128-gcm@openssh.com -o Compression=no -x"
-a all
-u if a file is more recent than the source, skip it
-h show human readable file size
-z compress
-v verbose
-W copy files whole (without delta-xfer algorithm)
-H preserve hard links
-S handle sparse files efficiently
-X preserve extended attributes
e.g. rsync -auhzvHX --compress-level=9 --numeric-ids -e "ssh -T -c aes128-gcm@openssh.com -o Compression=no -x" folder/* remote:/path/to/folder/
-a all
-u if a file is more recent than the source, skip it
-h show human readable file size
-z compress
-v verbose
-W copy files whole (without delta-xfer algorithm)
-H preserve hard links
-S handle sparse files efficiently
-X preserve extended attributes
e.g. rsync -auhzvHX --compress-level=9 --numeric-ids -e "ssh -T -c aes128-gcm@openssh.com -o Compression=no -x" folder/* remote:/path/to/folder/
Comments
Post a Comment