prezto_config/modules/rsync/init.zsh

28 lines
798 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Defines rsync aliases.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-31 05:16:15 +02:00
# Aliases
2012-01-21 01:55:55 +01:00
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}"
2011-08-31 05:16:15 +02:00
compdef _rsync rsync-copy=rsync
2012-01-21 01:55:55 +01:00
alias rsync-move="${rsync_cmd} --remove-source-files"
2011-08-31 05:16:15 +02:00
compdef _rsync rsync-move=rsync
2012-01-21 01:55:55 +01:00
alias rsync-update="${rsync_cmd} --update"
2011-08-31 05:16:15 +02:00
compdef _rsync rsync-upate=rsync
2012-01-21 01:55:55 +01:00
alias rsync-synchronize="${rsync_cmd} --update --delete"
2011-08-31 05:16:15 +02:00
compdef _rsync rsync-synchronize=rsync
2012-01-21 01:55:55 +01:00
unset rsync_cmd