I often want to read output from the terminal from the beginning but by default I have to scroll back up. This can be laborious when there is a lot of text. Is there anything I can do about this?
Thanks :)
I often want to read output from the terminal from the beginning but by default I have to scroll back up. This can be laborious when there is a lot of text. Is there anything I can do about this?
Thanks :)
Using less is good, but only if your command output is done in one go. If you have a command that keeps running, use
reset; command
to first clear all output, and then run the command. You can easily scroll right to the top.