in reply to Re: How can I control interactive cli executables on Windows from Perl
in thread How can I control interactive cli executables on Windows from Perl

Nah, the standard windows telnet client is most definitely a console Application.

/J\

  • Comment on Re^2: How can I control interactive cli executables on Windows from Perl

Replies are listed 'Best First'.
Re^3: How can I control interactive cli executables on Windows from Perl
by meetraz (Hermit) on Mar 30, 2005 at 18:09 UTC
    console application yes, but command-line? It doesn't work with STDIN/STDOUT so some of the suggestions above will probably not work (piped open, open3).

    Your best bet is probably Win32::Console, since it allows you access to reading the screen buffer and the keyboard control events.