1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 18:10:28 +00:00
prezto/modules/rsync/init.zsh

24 lines
662 B
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Defines rsync aliases.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-31 03:16:15 +00:00
# Aliases
2012-01-21 00:55:55 +00:00
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"
2011-08-31 03:16:15 +00:00
2012-01-21 00:55:55 +00:00
unset rsync_cmd