mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-07 16:00:41 +01:00
16 lines
269 B
Bash
16 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"
|
|
}
|