When using cat to read a large file that you can't go through quickly, you can use more to view it page by page. The basic syntax is more FILE.
Basic operations within more are as follows:
$ history | more ←View command history using `more` (press <q> to exit or after reading) $ more FILE ←Read the file "FILE" using `more` |