in reply to Re: maximum result size for Net::Telnet's cmd() method
in thread maximum result size for Net::Telnet's cmd() method
Which, if you actually read the source is exactly what cmd() does:
## Send command and wait for the prompt. $self->put($cmd . $ors) and ($lines, $last_prompt) = $self->waitfor($prompt);
So no, there is no direct limit on the number of lines returned, only the indirect limit placed by the timeout.
|
|---|