You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
389 B
Bash

#!/bin/bash
# variables
BACKUP_PATH="/media/isabell/Elements\ SE/isabell_tuxedo/"
# EXCLUDED_DIRS={}
# backup execution
if [[ -f $BACKUP_PATH ]] && echo "Starting rsync backup of home directory to $BACKUP_PATH"; then
#if [ "$EXCLUDED_DIRS" = "" ]; then
rsync -av --delete $HOME $BACKUP_PATH
#fi
else
echo "Device or location designated for the backup does not exist."
fi