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.
24 lines
662 B
24 lines
662 B
13 years ago
|
#
|
||
|
# Defines rsync aliases.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
13 years ago
|
# Aliases
|
||
13 years ago
|
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"
|
||
13 years ago
|
|
||
13 years ago
|
unset rsync_cmd
|
||
|
|