1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 05:40:08 +00:00

rsync: add rsync- prefixes and use aliases

This commit is contained in:
meh 2011-07-16 07:18:14 +02:00
parent c5a01fe422
commit 1d17502aed

View file

@ -1,15 +1,4 @@
function copy { alias rsync-copy="rsync -av --progress -h"
rsync -av --progress -h "$1" "$2" alias rsync-move="rsync -av --progress -h --remove-source-files"
} alias rsync-update="rsync -avu --progress -h"
alias rsync-synchronize="rsync -avu --delete --progress -h"
function move {
rsync -av --progress -h --remove-source-files "$1" "$2"
}
function update {
rsync -avu --progress -h "$1" "$2"
}
function synchronize {
rsync -avu --delete --progress -h "$1" "$2"
}