#!/bin/sh
mt -f /dev/nrst0 status
echo copyright
dd if=copyright of=/dev/nrst0 bs=1b conv=sync
sleep 15
echo tape3_xdrtoc
dd if=SunOS35.sun3.QIC-24c.xdrtoc of=/dev/nrst0 bs=1b conv=sync
sleep 15
for i in sunview_users sunview_programmers sunview_demo text setup standalone_diags fortran user_diag suncore pascal profiled_libraries uucp
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
