Output exceeding terminal window height
You could send the output to a file:
$ your_command > /tmp/output.txt
You could then open up that file in any text editor and examine it at your leisure.
Or, you could pipe the output directly to a program such as less
that is specifically designed as a text reader and can help you page through data when it is more than a screen-full:
$ your_command | less