diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/backup-usb32.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/backup-usb32.sh b/bin/backup-usb32.sh index 8008480..6dd038f 100755 --- a/bin/backup-usb32.sh +++ b/bin/backup-usb32.sh @@ -1,3 +1,8 @@ #!/usr/bin/env bash rsync -az -u -v /mnt/32 ~/Documents/32.bak/ + +# --archive, -a archive mode is -rlptgoD (no -A,-X,-U,-N,-H) +# --compress, -z compress file data during the transfer +# --update, -u skip files that are newer on the receiver +# --verbose, -v increase verbosity |