in reply to Function keys via Net::Telnet
This may even be as simple as setting your "TERM" environment variable to match the emulation mode of your terminal or terminal emulator. For example:
After this you could try sending the ASCII function codes, perhaps, or whatever other techniques you were trying before.## Connect and login. use Net::Telnet (); $host = new Net::Telnet (Timeout => 30, Prompt => '/[%#>] $/'); $host->open($hostname); $host->login($username, $passwd); $host->cmd("export TERM=vt100");
Again, I'm not positive this will work for you as I've only used Net::Telnet on a couple of my scripts, but it's pretty easy, and might help you with the missing "functionality." ;-)
|
---|
Replies are listed 'Best First'. | |
---|---|
(bbfu) (not unix) Re(2): Function keys via Net::Telnet
by bbfu (Curate) on Apr 04, 2001 at 09:57 UTC | |
by kschwab (Vicar) on Apr 04, 2001 at 19:34 UTC | |
by bbfu (Curate) on Apr 04, 2001 at 23:35 UTC |