You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
765 B
31 lines
765 B
# |
|
# 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' |
|
|
|
# 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}" |
|
alias rsync-move="${_rsync_cmd} --remove-source-files" |
|
alias rsync-update="${_rsync_cmd} --update" |
|
alias rsync-synchronize="${_rsync_cmd} --update --delete" |
|
|
|
unset _rsync_cmd |
|
|
|
|