more [options] [files]Display the named files on a terminal, one screenful at a time. After each screen is displayed, press the Return key to display the next line or press the spacebar to display the next screenful. Press h for help with additional commands, q to quit, / to search, or :n to go to the next file. more can also be invoked using the name page.
-cPage through the file by clearing the screen instead of scrolling. This is often faster and is much easier to read.
-dDisplay the prompt Press space to continue, 'q' to quit.
-fCount logical rather than screen lines. Useful when long lines wrap past the width of the screen.
-lIgnore formfeed (^L) characters.
-rForce display of control characters, in the form ^x.
-sSqueeze; display multiple blank lines as one.
-uSuppress underline characters and backspace (^H).
-wWait for a user keystroke before exiting.
-nUse n lines for each "window" (default is a full screen).
+numBegin displaying at line number num.
+/patternBegin displaying two lines before pattern.
Page through file in "clear" mode, and display prompts:
more -cdfile
Format doc to the screen, removing underlines:
nroff doc | more -u
View the manpage for the grep command; begin near the word "BUGS" and compress extra whitespace:
man grep | more +/BUGS -s