Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
The question still stands, I had to go around the problem by finding a command that returns a much smaller section of the config. – Recc Sep 6 '12 at 8:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.