Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Help using Net::Telnet to use Rainbow

by Sidhekin (Priest)
on Oct 04, 2007 at 15:25 UTC ( [id://642677]=note: print w/replies, xml ) Need Help??


in reply to Help using Net::Telnet to use Rainbow

$f = $pop->waitfor('//'); print "$f\n";

From the documentation, waitfor just returns success or failure in scalar context. I'd say you probably want to call waitfor in list context:

($f) = $pop->waitfor('//'); print "$f\n";

... or even:

($f, $match) = $pop->waitfor('//'); print "$f$match\n";

print "Just another Perl ${\(trickster and hacker)},"
The Sidhekin proves Sidhe did it!

Replies are listed 'Best First'.
Re^2: Help using Net::Telnet to use Rainbow
by downer (Monk) on Oct 04, 2007 at 16:03 UTC
    I found the problem. yes, I need to call waitfor in list context, but instead of "\r\n.\r\n", I tried just "\n.\n" and it works fine.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://642677]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-25 22:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found