|
|
|
@ -20,6 +20,10 @@ pmodload 'helper'
|
|
|
|
|
_rsync_cmd='rsync --verbose --progress --human-readable --compress --archive \
|
|
|
|
|
--hard-links --one-file-system'
|
|
|
|
|
|
|
|
|
|
autoload -Uz is-at-least
|
|
|
|
|
if is-at-least 3.1 ${"$(rsync --version 2>&1)"[(w)3]}; then
|
|
|
|
|
|
|
|
|
|
# ACL and extended attributes support
|
|
|
|
|
if grep -q 'xattrs' <(rsync --help 2>&1); then
|
|
|
|
|
_rsync_cmd="${_rsync_cmd} --acls --xattrs"
|
|
|
|
|
fi
|
|
|
|
@ -29,6 +33,7 @@ fi
|
|
|
|
|
if is-darwin && grep -q 'file-flags' <(rsync --help 2>&1); then
|
|
|
|
|
_rsync_cmd="${_rsync_cmd} --crtimes --fileflags --force-change"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
alias rsync-copy="${_rsync_cmd}"
|
|
|
|
|
alias rsync-move="${_rsync_cmd} --remove-source-files"
|
|
|
|
|