#!/bin/sh
type=`machtype -c`
case $type in
POWER*)
  TELNETPGM=/afs/athena.mit.edu/project/library/rsaixbin/ucbtelnet
  ;;
*)
  TELNETPGM=telnet
  ;;
esac

$TELNETPGM -l library $TTYSERVER

#echo " "
#echo "Hit the Return key to continue"
#read answer
		
exit 0





