#!/bin/sh
#Restore files from floppies

echo "-BEGIN--------------------------------------------------------------"
floppyrestore /dev/fd0 | gzip -dc | bytecount | tar -xvf -
echo "-END----------------------------------------------------------------"
