http://www.perlmonks.org?node_id=38040

Toubib has asked for the wisdom of the Perl Monks concerning the following question:

I need to interface with a vt100 GUI on a remote system. When I log in, my "shell" is a vt100 GUI. All I need to do is send some keys to it but for that I need to emulate some kind of VT100 terminal through my socket. Does someone have an idea how to do that?

Originally posted as a Categorized Question.

  • Comment on How do I emulate a VT100 terminal to interact with a remote GUI

Replies are listed 'Best First'.
Re: How do I emulate a VT100 terminal to interact with a remote GUI
by lhoward (Vicar) on Oct 24, 2000 at 01:57 UTC
    See Expect. The Expect programming language (and the perl Expect module that provides that functionality to Perl users) are designed percisely for doing what you want: interacting with console and command-line processes like it was a user at a keyboard.