0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/rsync/rsync.plugin.zsh
2011-06-15 16:15:52 +02:00

15 lines
269 B
Bash

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"
}