more

UK[mɔ:(r)] US[mɔr, mor]

adv.More, more; reach or be in a larger range or degree; in addition, more

adj. more; comparative form of (many); additional, extra

pron. More or additional people or things

n.More; additional, add

Linux more command syntax

Function: The more command is similar to cat, but it will be displayed page by page, which is more convenient for users to read page by page. The most basic command is to press the space key (space) to go down. One page is displayed. Press the b key to go back one page. It also has a search string function (similar to vi). For the documentation in use, please press h.

Syntax: more [-dlfpcsu] [-num] [ /pattern] [ linenum] [fileNames..]

Linux more command example

Display the testfile document content page by page. If there are more than two consecutive blank lines, it will be displayed as one blank line.

more -s testfile

Display the document content of testfile starting from line 20.

more +20 testfile