#!/bin/sh
tty_now=`tty | cut -b1-9`
if [ "$tty_now" = "/dev/ttyS" ]; then
  export TERM=vt100
fi
exec telnet -e "" god
