#!/usr/local/bin/expect -f

#
# A bare-bones expect client that telnets directly through the telnet proxy
# Expect may be obtained from ftp.cme.nist.gov in pub/expect/expect.tar.Z.
#
set relay relay.tis.com

set timeout 60
set env(TERM) vt100
log_user 0

spawn telnet $relay
expect {
	"*>" {
		send "connect $argv\r"
		interact
	}
}
