in reply to Problem in usage of waitfor in Telnet module
Supply me with a string to match that line with.$telnet->waitfor('/ Continue $/i') or die "Can't find enter to continu +e", $telnet->lastline;
Don't know if it helps. Or supply me with more info.$telnet->timeout(30); # for a 30 second timeout $telnet->waitfor('/ Continue $/i'); $telnet->timeout(10); # reset timeout to 10 second
|
|---|