#!/bin/sh

TELNET=/usr/bin/telnet

echo -n "Enter a host to which to connect, or just press ENTER to exit: "

read HOST
if [ X$HOST = "X" ]; then
	exit
else
	exec $TELNET $HOST
fi
