diff options
author | Tim Kelty <timkelty@gmail.com> | 2013-12-16 10:26:18 -0500 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-06-08 10:33:54 +0200 |
commit | f7948ace66dd541e5b60666d840cce6b6d95f0e6 (patch) | |
tree | abe6aa20b8e877da1cfcd82563cd1606d38f6d3f /plugins/rsync | |
parent | f82092a0e78985287c6eb1746234db688bb1a98f (diff) | |
download | zsh-f7948ace66dd541e5b60666d840cce6b6d95f0e6.tar.gz zsh-f7948ace66dd541e5b60666d840cce6b6d95f0e6.tar.bz2 zsh-f7948ace66dd541e5b60666d840cce6b6d95f0e6.zip |
Adding compression to rsync commands
This speeds up transfers significantly. No reason not to include it as far as I know.
Diffstat (limited to 'plugins/rsync')
-rw-r--r-- | plugins/rsync/rsync.plugin.zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/rsync/rsync.plugin.zsh b/plugins/rsync/rsync.plugin.zsh index 33a31a5c1..1a3bb4cc3 100644 --- a/plugins/rsync/rsync.plugin.zsh +++ b/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" |