in reply to Out of control in Net::Telnet

Try sprintf, say:
$cmd = sprintf("%c%c", 0xff, 0xc8);

Replies are listed 'Best First'.
Re: Re: Out of control in Net::Telnet
by premchai21 (Curate) on Nov 24, 2002 at 20:19 UTC
    Don't need sprintf when the same thing can be accomplished with a string literal. "\xff\xc8"
Re: Re: Out of control in Net::Telnet
by Lonny (Novice) on Nov 24, 2002 at 19:57 UTC
    That almost fixed it. Result was it definitely changed the interface but still getting of the gui control chars. I'm going to play with some ENV vars and see if I can finish the clean up.

    Thank you so much for the pointer!!!