
# testing:  sh -x scriptname

USAGE="usage: $0:  filename1 filename2 ... "  
FLAG=""
if test "$1" = "-b"; then
    FLAG="-b"
    shift
fi

DESTDIR=`pwd`
for i in $*
    do
    echo "Copying DOS file $i to XENIX directory $DESTDIR"
    doscp $FLAG /mnt/floppy/$i $DESTDIR/$i
done

