diff --git a/sh/alias/rsync.sh b/sh/alias/rsync.sh index 49ad728..5f73df7 100644 --- a/sh/alias/rsync.sh +++ b/sh/alias/rsync.sh @@ -1,8 +1,9 @@ # shortcuts for rsync # synchronize +#| rsync #= rs -a__r_sync() { +rwx_rsync() { rsync \ --archive \ --no-inc-recursive \ @@ -14,16 +15,16 @@ a__r_sync() { # synchronize and delete after #= rsda -a__r_sync_delete_after() { - a__r_sync \ +rwx_rsync_delete_after() { + rwx_rsync \ --delete-after \ "${@}" } # synchronize and delete before #= rsdb -a__r_sync_delete_before() { - a__r_sync \ +rwx_rsync_delete_before() { + rwx_rsync \ --delete-before \ "${@}" }