- 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:
- Pipe the output an ls -la into more:
ls -la | more
- View the files file1 and file2 with more:
more file1 file2
- View all the files beginning with an R with more:
more R*