more [filelist]
This command, like cat, prints files to the screen, but only one screenfull at a time. As with the man pages, space bar lets you see the next page, return or enter key lets you see the next line and `q' lets you exit.

Examples:
  1. Pipe the output an ls -la into more:
    ls -la | more

  2. View the files file1 and file2 with more:
    more file1 file2

  3. View all the files beginning with an R with more:
    more R*