#!/bin/bash
#This will check to see if the 'dialog' program exist, if so use it, if not
# then do a regular 'less'
if test `which dialog`; then
dialog --msgbox "industrialMUD 0.0.1" 5 40
dialog --textbox README 20 80
else
less README
fi
