I wonder if someone has the time to help me fix a quick & dirty bash script to
automate a hard disc copy of a hundred or so floppy discs, basically:
n = 1
while true do
mkdir n
mcopy b:*.* n
n = n + 1
echo "change discs, press a key"
read JUNK
done
(there are a few syntax errors in this)
K.