From: Babu Raj on 26 Nov 2009 09:28 Hi Could you pls let me know how I can send in keystrokes such as ENTER and ESC to a telnet session. I have the session created using Net::Telnet.new(). -- Posted via http://www.ruby-forum.com/.
From: Ryan Davis on 26 Nov 2009 15:32 On Nov 26, 2009, at 06:28 , Babu Raj wrote: > Could you pls let me know how I can send in keystrokes such as ENTER and > ESC to a telnet session. I have the session created using > Net::Telnet.new(). Depends on what you're trying to do. Either something like this: http://groups.google.com/group/ruby-talk-google/browse_frm/thread/96cabb08c34182c/77c0843d27e95dd3?lnk=gst&q=berger+password&rnum=1#77c0843d27e95dd3 or you want to look at expect.rb.
From: Brian Candler on 26 Nov 2009 15:46 Babu Raj wrote: > Hi > Could you pls let me know how I can send in keystrokes such as ENTER and > ESC to a telnet session. I have the session created using > Net::Telnet.new(). Have you tried sess.puts sess.print "\x1b" ? -- Posted via http://www.ruby-forum.com/.
|
Pages: 1 Prev: Heatmaps in Ruby Next: Pattern match to fail if two periods in a row |