Jason, You didn't say anyting about the OSs involved, but the '\n' *nix eoln versus win '\r\n' is an often encountered problem. if you are *nix and target is or may be win
while (my $line = $Telnet->getline(Timeout => 5,)) {
$line =~ s/\r\n$\\;
chomp $line;
...
might do the trick.
HTH
"Jason Frisvold" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
