8 lines
346 B
Bash
8 lines
346 B
Bash
# vim:sts=2:sw=2:ft=zsh
|
|
# Taken from: https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/rsync/rsync.plugin.zsh
|
|
#
|
|
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"
|