The way something like this would normally be handled in Linux is to pipe the output to either
more or
less, something like this:
Code:
netstat -na | more
netstat -na | less
My preference is
less since you can scroll the output both forward and backwards (using the arrow keys), search, and several other capabilities. Check out the
man pages of these commands for more info.
The options for
netstat I listed above are just examples. You can use this technique for any command that sends its data to
stdout.