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

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

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


