sh/bash.d/rsync.sh
2023-05-09 22:02:34 +02:00

8 lines
307 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'