#!/usr/bin/env bash # 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 -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