#!/bin/sh
mt -f /dev/nrst0 status
echo copyright
dd if=copyright of=/dev/nrst0 bs=1b conv=sync
sleep 15
echo tape5_xdrtoc
dd if=SunOS35.sun3.QIC-24e.xdrtoc of=/dev/nrst0 bs=1b conv=sync
sleep 15
for i in versatec
do
	echo sun3_$i.tar
	dd if=sun3_$i.tar bs=1b conv=sync|dd of=/dev/nrst0 bs=32k
	sleep 15
done
echo copyright
dd if=copyright of=/dev/nrst0 bs=1b conv=sync
sleep 15
mt -f /dev/nrst0 status
