rsync
This commit is contained in:
parent
22077fad31
commit
4930c7bd04
1 changed files with 24 additions and 3 deletions
|
@ -1,8 +1,29 @@
|
|||
# synchronize
|
||||
alias rs='rsync --archive --partial --progress --verbose --no-inc-recursive'
|
||||
alias rs="\
|
||||
rsync \
|
||||
--archive \
|
||||
--partial \
|
||||
--progress \
|
||||
--verbose \
|
||||
--no-inc-recursive \
|
||||
"
|
||||
|
||||
# synchronize and delete after
|
||||
alias rsda='rsync --archive --partial --progress --verbose --delete-after'
|
||||
alias rsda="\
|
||||
rsync \
|
||||
--archive \
|
||||
--partial \
|
||||
--progress \
|
||||
--verbose \
|
||||
--delete-after \
|
||||
"
|
||||
|
||||
# synchronize and delete before
|
||||
alias rsdb='rsync --archive --partial --progress --verbose --delete-before'
|
||||
alias rsdb="\
|
||||
rsync \
|
||||
--archive \
|
||||
--partial \
|
||||
--progress \
|
||||
--verbose \
|
||||
--delete-before \
|
||||
"
|
||||
|
|
Loading…
Reference in a new issue