mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 12:01:12 +00:00
55e4db9429
rsync has support for these available in most cases and isn't specific to Mac OS X any more. Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
35 lines
865 B
Bash
35 lines
865 B
Bash
#
|
|
# Defines Rsync aliases.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# Return if requirements are not found.
|
|
if (( ! $+commands[rsync] )); then
|
|
return 1
|
|
fi
|
|
|
|
#
|
|
# Aliases
|
|
#
|
|
|
|
_rsync_cmd='rsync --verbose --progress --human-readable --compress --archive --hard-links --one-file-system'
|
|
|
|
if grep -q 'xattrs' <(rsync --help 2>&1); then
|
|
_rsync_cmd="${_rsync_cmd} --acls --xattrs"
|
|
fi
|
|
|
|
# Mac OS X and HFS+ Enhancements
|
|
# http://help.bombich.com/kb/overview/credits#opensource
|
|
if [[ "$OSTYPE" == darwin* ]] && grep -q 'file-flags' <(rsync --help 2>&1); then
|
|
_rsync_cmd="${_rsync_cmd} --crtimes --fileflags --protect-decmpfs --force-change"
|
|
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"
|
|
|
|
unset _rsync_cmd
|