#!/bin/sh
#
# Script to determine which minicourse schedule to fire off from dash.
# (for next schedule)
#
# T. Krall 3/16/95
# 	   Updated 3/23/95 for sgi	-T. Krall
#

machine="`/bin/athena/machtype`"

case $machine in
   decmips)
	attach minidev
	xterm -e /mit/info/Minicourse_Scripts/show_next &
#	more /mit/minidev/Public/Misc/mini_next.asc
	;;
   rsaix|sun4|sparc|sgi)
	attach minidev
	attach frame
	bindir=`athdir /mit/frame`
	$bindir/viewer -file /mit/minidev/Public/Misc/mini_next.doc
	;;
   *)
	echo "Unknown machine type $machine - Contact Athena Operations"
	exit 1
	;;
esac


