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