If you run a program in a terminal window that generates more output than you can see in one screen, what are some ways to view the output one screenfull at a time?
If you run a program in a terminal window that generates more output than you can see in one screen, what are some ways to view the output one screenfull at a time?
2 Comments
cat ~/hugetextfile | more
cat ~/giganticfile | less
and my favorite:
cat ~/wayhugefile | most
I can’t think of any others, but I’d love to know…
@edvard
I did not know there was a ‘most’ command.
Another method is to use a terminal program with a scrollbar - like konsole. Those can contain a lot of text.
Post a Comment