downer has asked for the wisdom of the Perl Monks concerning the following question:
Trying 128.*******.12... Connected to rhino.***.edu. Escape character is '^]'.
use Net::Telnet (); $hostname = "rhino.****.edu"; $pop = new Net::Telnet (Telnetmode => 0); $pop->open(Host => $hostname, Port => 1827); $x = "Kingdom Hearts is a series of action role-playing games develope +d and publ ished by Square Enix (formerly Square). It is the resu +lt of a collaboration betw een Square and Disney Interactive Stud +ios, and is under the direction of Tetsuya Nomura"; $x .= "\r\n.\r\n"; $pop->print($x); $f = $pop->waitfor('//'); print "$f\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help using Net::Telnet to use Rainbow
by Sidhekin (Priest) on Oct 04, 2007 at 15:25 UTC | |
by downer (Monk) on Oct 04, 2007 at 16:03 UTC |