What if docker can't see the information displayed before?

clipboard.png
when I type the history command, I only show the command 400-1000, because there are too many records loaded, the first 400 commands can"t be seen, and the scroll bar scrolls forward to command 447 at most. How can I see the previous command?

Mar.02,2021

    In
  1. Terminal, the default retained history is 512 rows. You can set the number of rows reserved through Edit- > profiles- > edit- > scrolling- > scrollback.
  2. add less or more with pipe

    history | less

  3. dump to a file, and then view

    history > a.txt
    vim a.txt

    in the editor.
Menu