{
    "content": [
        {
            "type": "text",
            "text": "# more(1) (man)\n\n**Summary:** more - file perusal filter for crt viewing\n\n**Synopsis:** more [options] file ...\n\n## Flags\n\n| Flag | Long | Arg | Description |\n|------|------|-----|-------------|\n| -d | --silent | — | Prompt with \"[Press space to continue, 'q' to quit.]\", and display \"[Press 'h' for instructions.]\" instead of ringing th |\n| -l | --logical | — | Do not pause after any line containing a ^L (form feed). |\n| -f | --no-pause | — | Count logical lines, rather than screen lines (i.e., long lines are not folded). |\n| -p | --print-over | — | Do not scroll. Instead, clear the whole screen and then display the text. Notice that this option is switched on automat |\n| -c | --clean-print | — | Do not scroll. Instead, paint each screen from the top, clearing the remainder of each line as it is displayed. |\n| -s | --squeeze | — | Squeeze multiple blank lines into one. |\n| -u | --plain | — | Suppress underlining. This option is silently ignored as backwards compatibility. |\n| -n | --lines | — | Specify the number of lines per screenful. The number argument is a positive decimal integer. The --lines option shall o |\n| — | --help | — | Display help text and exit. |\n| -V | --version | — | Display version information and exit. |\n\n## See Also\n\n- less(1)\n- vi(1)\n\n## Section Outline\n\n- **NAME** (2 lines)\n- **SYNOPSIS** (2 lines)\n- **DESCRIPTION** (4 lines)\n- **OPTIONS** (3 lines) — 10 subsections\n  - -d --silent (3 lines)\n  - -l --logical (2 lines)\n  - -f --no-pause (2 lines)\n  - -p --print-over (3 lines)\n  - -c --clean-print (3 lines)\n  - -s --squeeze (2 lines)\n  - -u --plain (2 lines)\n  - -n --lines (13 lines)\n  - --help (2 lines)\n  - -V --version (2 lines)\n- **COMMANDS** (40 lines) — 1 subsections\n  - /pattern (28 lines)\n- **ENVIRONMENT** (18 lines)\n- **HISTORY** (4 lines)\n- **AUTHORS** (6 lines)\n- **SEE ALSO** (2 lines)\n- **REPORTING BUGS** (2 lines)\n- **AVAILABILITY** (6 lines)\n\n## Full Content\n\n### NAME\n\nmore - file perusal filter for crt viewing\n\n### SYNOPSIS\n\nmore [options] file ...\n\n### DESCRIPTION\n\nmore is a filter for paging through text one screenful at a time. This version is especially\nprimitive. Users should realize that less(1) provides more(1) emulation plus extensive\nenhancements.\n\n### OPTIONS\n\nOptions are also taken from the environment variable MORE (make sure to precede them with a\ndash (-)) but command-line options will override those.\n\n#### -d --silent\n\nPrompt with \"[Press space to continue, 'q' to quit.]\", and display \"[Press 'h' for\ninstructions.]\" instead of ringing the bell when an illegal key is pressed.\n\n#### -l --logical\n\nDo not pause after any line containing a ^L (form feed).\n\n#### -f --no-pause\n\nCount logical lines, rather than screen lines (i.e., long lines are not folded).\n\n#### -p --print-over\n\nDo not scroll. Instead, clear the whole screen and then display the text. Notice that\nthis option is switched on automatically if the executable is named page.\n\n#### -c --clean-print\n\nDo not scroll. Instead, paint each screen from the top, clearing the remainder of each\nline as it is displayed.\n\n#### -s --squeeze\n\nSqueeze multiple blank lines into one.\n\n#### -u --plain\n\nSuppress underlining. This option is silently ignored as backwards compatibility.\n\n#### -n --lines\n\nSpecify the number of lines per screenful. The number argument is a positive decimal\ninteger. The --lines option shall override any values obtained from any other source,\nsuch as number of lines reported by terminal.\n\n-number\nA numeric option means the same as --lines option argument.\n\n+number\nStart displaying each file at line number.\n\n+/string\nThe string to be searched in each file before starting to display it.\n\n#### --help\n\nDisplay help text and exit.\n\n#### -V --version\n\nDisplay version information and exit.\n\n### COMMANDS\n\nInteractive commands for more are based on vi(1). Some commands may be preceded by a decimal\nnumber, called k in the descriptions below. In the following descriptions, ^X means\ncontrol-X.\n\nh or ?\nHelp; display a summary of these commands. If you forget all other commands, remember\nthis one.\n\nSPACE\nDisplay next k lines of text. Defaults to current screen size.\n\nz\nDisplay next k lines of text. Defaults to current screen size. Argument becomes new\ndefault.\n\nRETURN\nDisplay next k lines of text. Defaults to 1. Argument becomes new default.\n\nd or ^D\nScroll k lines. Default is current scroll size, initially 11. Argument becomes new\ndefault.\n\nq or Q or INTERRUPT\nExit.\n\ns\nSkip forward k lines of text. Defaults to 1.\n\nf\nSkip forward k screenfuls of text. Defaults to 1.\n\nb or ^B\nSkip backwards k screenfuls of text. Defaults to 1. Only works with files, not pipes.\n\n'\nGo to the place where the last search started.\n\n=\nDisplay current line number.\n\n#### /pattern\n\nSearch for kth occurrence of regular expression. Defaults to 1.\n\nn\nSearch for kth occurrence of last regular expression. Defaults to 1.\n\n!command or :!command\nExecute command in a subshell.\n\nv\nStart up an editor at current line. The editor is taken from the environment variable\nVISUAL if defined, or EDITOR if VISUAL is not defined, or defaults to vi(1) if neither\nVISUAL nor EDITOR is defined.\n\n^L\nRedraw screen.\n\n:n\nGo to kth next file. Defaults to 1.\n\n:p\nGo to kth previous file. Defaults to 1.\n\n:f\nDisplay current file name and line number.\n\n.\nRepeat previous command.\n\n### ENVIRONMENT\n\nThe more command respects the following environment variables, if they exist:\n\nMORE\nThis variable may be set with favored options to more.\n\nSHELL\nCurrent shell in use (normally set by the shell at login time).\n\nTERM\nThe terminal type used by more to get the terminal characteristics necessary to\nmanipulate the screen.\n\nVISUAL\nThe editor the user prefers. Invoked when command key v is pressed.\n\nEDITOR\nThe editor of choice when VISUAL is not specified.\n\n### HISTORY\n\nThe more command appeared in 3.0BSD. This man page documents more version 5.19 (Berkeley\n6/29/88), which is currently in use in the Linux community. Documentation was produced using\nseveral other versions of the man page, and extensive inspection of the source code.\n\n### AUTHORS\n\nEric Shienbrood, UC Berkeley.\n\nModified by Geoff Peck, UCB to add underlining, single spacing.\n\nModified by John Foderaro, UCB to add -c and MORE environment variable.\n\n### SEE ALSO\n\nless(1), vi(1)\n\n### REPORTING BUGS\n\nFor bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.\n\n### AVAILABILITY\n\nThe more command is part of the util-linux package which can be downloaded from Linux Kernel\nArchive <https://www.kernel.org/pub/linux/utils/util-linux/>.\n\n\n\nutil-linux 2.37.2                            2021-06-02                                      MORE(1)\n\n"
        }
    ],
    "structuredContent": {
        "command": "more",
        "section": "1",
        "mode": "man",
        "summary": "more - file perusal filter for crt viewing",
        "synopsis": "more [options] file ...",
        "flags": [
            {
                "flag": "-d",
                "long": "--silent",
                "arg": null,
                "description": "Prompt with \"[Press space to continue, 'q' to quit.]\", and display \"[Press 'h' for instructions.]\" instead of ringing the bell when an illegal key is pressed."
            },
            {
                "flag": "-l",
                "long": "--logical",
                "arg": null,
                "description": "Do not pause after any line containing a ^L (form feed)."
            },
            {
                "flag": "-f",
                "long": "--no-pause",
                "arg": null,
                "description": "Count logical lines, rather than screen lines (i.e., long lines are not folded)."
            },
            {
                "flag": "-p",
                "long": "--print-over",
                "arg": null,
                "description": "Do not scroll. Instead, clear the whole screen and then display the text. Notice that this option is switched on automatically if the executable is named page."
            },
            {
                "flag": "-c",
                "long": "--clean-print",
                "arg": null,
                "description": "Do not scroll. Instead, paint each screen from the top, clearing the remainder of each line as it is displayed."
            },
            {
                "flag": "-s",
                "long": "--squeeze",
                "arg": null,
                "description": "Squeeze multiple blank lines into one."
            },
            {
                "flag": "-u",
                "long": "--plain",
                "arg": null,
                "description": "Suppress underlining. This option is silently ignored as backwards compatibility."
            },
            {
                "flag": "-n",
                "long": "--lines",
                "arg": null,
                "description": "Specify the number of lines per screenful. The number argument is a positive decimal integer. The --lines option shall override any values obtained from any other source, such as number of lines reported by terminal. -number A numeric option means the same as --lines option argument. +number Start displaying each file at line number. +/string The string to be searched in each file before starting to display it."
            },
            {
                "flag": "",
                "long": "--help",
                "arg": null,
                "description": "Display help text and exit."
            },
            {
                "flag": "-V",
                "long": "--version",
                "arg": null,
                "description": "Display version information and exit."
            }
        ],
        "examples": [],
        "see_also": [
            {
                "name": "less",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/less/1/json"
            },
            {
                "name": "vi",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/vi/1/json"
            }
        ],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "OPTIONS",
                "lines": 3,
                "subsections": [
                    {
                        "name": "-d --silent",
                        "lines": 3,
                        "flag": "-d",
                        "long": "--silent"
                    },
                    {
                        "name": "-l --logical",
                        "lines": 2,
                        "flag": "-l",
                        "long": "--logical"
                    },
                    {
                        "name": "-f --no-pause",
                        "lines": 2,
                        "flag": "-f",
                        "long": "--no-pause"
                    },
                    {
                        "name": "-p --print-over",
                        "lines": 3,
                        "flag": "-p",
                        "long": "--print-over"
                    },
                    {
                        "name": "-c --clean-print",
                        "lines": 3,
                        "flag": "-c",
                        "long": "--clean-print"
                    },
                    {
                        "name": "-s --squeeze",
                        "lines": 2,
                        "flag": "-s",
                        "long": "--squeeze"
                    },
                    {
                        "name": "-u --plain",
                        "lines": 2,
                        "flag": "-u",
                        "long": "--plain"
                    },
                    {
                        "name": "-n --lines",
                        "lines": 13,
                        "flag": "-n",
                        "long": "--lines"
                    },
                    {
                        "name": "--help",
                        "lines": 2,
                        "long": "--help"
                    },
                    {
                        "name": "-V --version",
                        "lines": 2,
                        "flag": "-V",
                        "long": "--version"
                    }
                ]
            },
            {
                "name": "COMMANDS",
                "lines": 40,
                "subsections": [
                    {
                        "name": "/pattern",
                        "lines": 28
                    }
                ]
            },
            {
                "name": "ENVIRONMENT",
                "lines": 18,
                "subsections": []
            },
            {
                "name": "HISTORY",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "AUTHORS",
                "lines": 6,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "REPORTING BUGS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "AVAILABILITY",
                "lines": 6,
                "subsections": []
            }
        ]
    }
}