#!/bin/sh
while :
do
  echo "Type the name of the location to backup my data to. (^C to quit)"
  read TARGET 
  echo "My data will be backed up to: $TARGET."
done
