#!/bin/sh 
# installed by tjo on 940819, csnowden author

echo " "
echo "The MIT Libraries' gopher server has been "
echo "supplanted by a WWW server at URL:"
echo "http://nimrod.mit.edu/"
echo " "

exit 0

if  [ "$DISPLAY" = "" ]
then
#start the curses client
attach -quiet gopher
/mit/gopher/`machtype`bin/gopher macfadden.mit.edu 70

else 

# otherwise, start the X client

#in case user wants to view some pix
attach -quiet graphics

# and start the gopher, pointing to macfadden.mit.edu (alias mitosis), port 70
attach -quiet gopher
`athdir /mit/gopher`/xgopher macfadden.mit.edu 70 -geometry +365+100


fi











