7 lines
232 B
Bash
7 lines
232 B
Bash
|
function cpr() {
|
||
|
rsync --archive -hh --partial --info=stats1 --info=progress2 --modify-window=1 "$@"
|
||
|
}
|
||
|
function mvr() {
|
||
|
rsync --archive -hh --partial --info=stats1 --info=progress2 --modify-window=1 --remove-source-files "$@"
|
||
|
}
|