#!/bin/sh
# Script allows user to specify, as the 1st argument,
# the directory where the files are to be copied.
# cp requires the directory argument to be last
location=$1
shift
files=$*
cp $files $location
