29 lines
352 B
Bash
29 lines
352 B
Bash
# synchronize
|
|
alias rs="\
|
|
rsync \
|
|
--archive \
|
|
--partial \
|
|
--progress \
|
|
--verbose \
|
|
--no-inc-recursive \
|
|
"
|
|
|
|
# synchronize and delete after
|
|
alias rsda="\
|
|
rsync \
|
|
--archive \
|
|
--partial \
|
|
--progress \
|
|
--verbose \
|
|
--delete-after \
|
|
"
|
|
|
|
# synchronize and delete before
|
|
alias rsdb="\
|
|
rsync \
|
|
--archive \
|
|
--partial \
|
|
--progress \
|
|
--verbose \
|
|
--delete-before \
|
|
"
|