1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 23:09:44 +00:00
prezto/plugins/rsync/init.zsh
2012-01-23 20:41:05 -05:00

21 lines
711 B
Bash

# Aliases
rsync_cmd='rsync --verbose --progress --human-readable --compress --archive --hard-links --one-file-system'
# Mac OS X and HFS+ Enhancements
# http://www.bombich.com/rsync.html
if [[ "$OSTYPE" == darwin* ]] && grep -q 'file-flags' <(rsync --help 2>&1); then
rsync_cmd="${rsync_cmd} --crtimes --acls --xattrs --fileflags --protect-decmpfs --force-change"
fi
alias rsync-copy="${rsync_cmd}"
compdef _rsync rsync-copy=rsync
alias rsync-move="${rsync_cmd} --remove-source-files"
compdef _rsync rsync-move=rsync
alias rsync-update="${rsync_cmd} --update"
compdef _rsync rsync-upate=rsync
alias rsync-synchronize="${rsync_cmd} --update --delete"
compdef _rsync rsync-synchronize=rsync
unset rsync_cmd