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

  • 0day@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    12 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.