#!/bin/sh
type=`machtype -c`
case $type in

POWER*) #aix
  TELNETPGM=/afs/athena.mit.edu/project/library/rsaixbin/ucbtelnet
  ;;
IP22*)  #sgi
  TELNETPGM=/usr/bsd/telnet
;;
*) #others
  TELNETPGM=/usr/ucb/telnet
  ;;
esac

$TELNETPGM $TTYSERVER

exit 0



