Browse Source

Adding compression to rsync commands

This speeds up transfers significantly. No reason not to include it as far as I know.
Tim Kelty 10 years ago
parent
commit
f7948ace66
1 changed files with 4 additions and 4 deletions
  1. 4 4
      plugins/rsync/rsync.plugin.zsh

+ 4 - 4
plugins/rsync/rsync.plugin.zsh

@@ -1,4 +1,4 @@
-alias rsync-copy="rsync -av --progress -h"
-alias rsync-move="rsync -av --progress -h --remove-source-files"
-alias rsync-update="rsync -avu --progress -h"
-alias rsync-synchronize="rsync -avu --delete --progress -h"
+alias rsync-copy="rsync -avz --progress -h"
+alias rsync-move="rsync -avz --progress -h --remove-source-files"
+alias rsync-update="rsync -avzu --progress -h"
+alias rsync-synchronize="rsync -avzu --delete --progress -h"