If I telnet using my terminal window to the device and enter show which prints config it prints certain number of lines and -- more -- in the bottom, you can press Return or Space on the keyboard a few times to get the rest of the command until it is all shown on screen, you know how it is.
With
$t->print('show');
Problem is neither
while (my $line = $t->getline()) {
print $line;
}
or
my @lines = $t->getlines(All => 0); # or All => 1
gives me all lines, just the starting few as with the terminal window.
I cant use cmd() or Expect or Net::OpenSSH on that box (the machine where the script runs, im not talking about the device), no gcc and has a crippled package manager. (Read: can't install IO::Pty)
What can I do to get the rest of the output of the command?