in reply to Sending key sequence with Net::Telnet
You don't show any code. I'd think that ->print("\x28") would work.
I'd have used "\c\" to get CTRL-\ more directly but that is a syntax error because the parser code that looks for the closing " doesn't understand the \c\ escape. You can work around this with substr("\c\ ",0,1), but that seems like too much work.
If you wonder what ->break() does, then why don't you just go look for yourself? BTW, it just boils down to $self->print("\xff\xf3").
- tye (but my friends call me "Tye")
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (tye)Re: Sending key sequence with Net::Telnet
by EyeOpener (Scribe) on Mar 14, 2002 at 21:51 UTC |