This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/rsync/init.zsh

35 lines
865 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
2012-06-13 21:45:23 -04:00
# Defines Rsync aliases.
2012-01-31 23:37:51 -05:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-07-23 15:00:44 -04:00
# Return if requirements are not found.
if (( ! $+commands[rsync] )); then
return 1
fi
2012-08-04 14:48:32 -04:00
#
2011-08-30 23:16:15 -04:00
# Aliases
2012-08-04 14:48:32 -04:00
#
_rsync_cmd='rsync --verbose --progress --human-readable --compress --archive --hard-links --one-file-system'
2012-01-20 19:55:55 -05:00
if grep -q 'xattrs' <(rsync --help 2>&1); then
_rsync_cmd="${_rsync_cmd} --acls --xattrs"
fi
2012-01-20 19:55:55 -05:00
# Mac OS X and HFS+ Enhancements
# http://help.bombich.com/kb/overview/credits#opensource
2012-01-20 19:55:55 -05:00
if [[ "$OSTYPE" == darwin* ]] && grep -q 'file-flags' <(rsync --help 2>&1); then
_rsync_cmd="${_rsync_cmd} --crtimes --fileflags --protect-decmpfs --force-change"
2012-01-20 19:55:55 -05:00
fi
alias rsync-copy="${_rsync_cmd}"
alias rsync-move="${_rsync_cmd} --remove-source-files"
alias rsync-update="${_rsync_cmd} --update"
alias rsync-synchronize="${_rsync_cmd} --update --delete"
2011-08-30 23:16:15 -04:00
unset _rsync_cmd