#!/bin/sh
# 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
TARGET=goober
while [ "$TARGET = "goober" ]
do
   echo "Type the target location to backup my data directory."
   read TARGET
   echo "Will now backup data directory to $TARGET"
done
