From 4930c7bd044ccf6cfb52c7830cb3006d8faa3650 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 May 2023 16:09:23 +0200 Subject: [PATCH] rsync --- bash/alias/rsync.sh | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/bash/alias/rsync.sh b/bash/alias/rsync.sh index ddd35b2..7c08c91 100644 --- a/bash/alias/rsync.sh +++ b/bash/alias/rsync.sh @@ -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 \ +"