On Mon, Mar 11, 2002 at 04:15:35PM -0800, Wim Verhaert wrote:
> Does anyone know how to send any control sequences (eg. CTRL+D) to the
> expect module?
>
> Thanks
>
Expect objects are filehandles.
$telnet = Expect->spawn('telnet');
print $telnet "\cd";
Austin
|