Add verbosity and quiet switch

This commit is contained in:
Jeffrey Serio 2024-10-02 13:34:36 -05:00
parent 45ffe3579b
commit 152bed933d

15
sync_to_protondrive Normal file → Executable file
View File

@ -1,13 +1,20 @@
#!/usr/bin/env bash
if ! kbackup --auto /home/jas/documents/default.kbp; then
logger -t backup_home -s "Error running kbackup"
# If the -q (quiet) flag is supplied, send all output to /dev/null.
if [[ "$1" == "-q" ]]; then
exec >/dev/null 2>&1
fi
if ! kbackup --verbose --autobg /home/jas/documents/default.kbp; then
logger -t sync_to_protondrive -s "Error running kbackup"
exit 1
fi
if ! rclone sync --transfers 8 /home/jas/sync_to_protondrive/ protondrive: ; then
logger -t backup_home -s "Error running rclone"
if ! rclone sync --transfers 8 -P /home/jas/sync_to_protondrive/ protondrive: ; then
logger -t sync_to_protondrive -s "Error running rclone"
exit 1
fi
logger -t sync_to_protondrive "sync_to_protondrive ran successfully"
exit 0