0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/rsync/rsync.plugin.zsh
Tim Kelty f7948ace66 Adding compression to rsync commands
This speeds up transfers significantly. No reason not to include it as far as I know.
2014-06-08 10:33:54 +02:00

4 lines
218 B
Bash

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"