#!/bin/bash
# This is my Bash script for backing up my /data directory.
# Be sure to keep an updated copy of this file in /data/3-linux/mydesigns.
# Currently this script is in it's infancy.  It assumes the external drive
# (/dev/sda2) is mounted at /maddog.  This script should be adjusted later 
# to allow for various possible backup targets.

clear
echo -e "If you are ready to backup /data to /maddog/data. press a key.  If not, press ctrl and C together. \c "
read word
clear
echo "Backing up newer files ..."
cp -aur /data/* /maddog/data
clear
echo "All done!"
