#!/bin/sh

FTP=/usr/bin/ftp

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 $FTP $HOST
fi
