
# testing:  sh -x scriptname

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

for i in $*
    do
    if test ! -f $i; then
       continue
       fi
    echo "Copying UNIX file $i to DOS floppy"
    doscp $FLAG $i /mnt/floppy/$i
done

