#!/bin/sh

while true
do
	clear
	echo "Which game would you like to play?"
	echo "\t1 - dungeon (zork)"
	echo "\t2 - nethack"
	echo "\t3 - tetrix (tetris)"
	echo "\t4 - bugs (space invaders-ish)"
	echo "\t5 - rocks (asteroids-ish)"
	echo "\t6 - gnuchess"
	echo "\t7 - moria"
#	echo "\t8 - crab (scrabble)"
	echo "\t0 - exit"
	read num
	case $num in
		1)	/usr/games/dungeon;;
		2)	/usr/games/nethack;;
		3)	/usr/games/tetrix;;
		4)	/usr/local/src/bugs/bugs;;
		5)	/usr/local/src/rocks/rocks;;
		6)	/usr/games/gnuchess;;
		7)	/usr/games/moria;;
		8)	/u/jwalz/src/crab/crab;;
		0)	exit 0;;
		*)	echo "Please enter a number";;
	esac
done
