rsync: add plugin

This commit is contained in:
meh 2011-06-15 16:15:52 +02:00
parent ed990f61ff
commit c5a01fe422

View File

@ -0,0 +1,15 @@
function copy {
rsync -av --progress -h "$1" "$2"
}
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"
}