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 :)

  • @[email protected]
    link
    fedilink
    111 days ago

    You could pipe it to less.

    somecommand | less

    Or if you want only the beginning or end of output, use head or tail.