#!/bin/sh
while :
do
    echo -e "Read another file [y/n]?\c"
    read ans
    case $ans in
	[Yy]*) 
	  mount -t vfat /dev/fd0 /floppy
	  ls /floppy
	  cp /floppy/* /target
	  umount /floppy
	  ;;
	*) exit ;;
    esac
done
