prezto_config/modules/rsync/init.zsh

31 lines
785 B
Bash
Raw Normal View History

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