MS-DOS 命令—— MORE.COM

  MORE.COM 是 MS-DOS 中一个很有用的命令,因为有时不用文本编辑器打开文本文件而直接阅读显得更方便。在这一情况下,MORE.COM 是一个很有用工具。当你想让你的电脑显示文本文件的内容时,你可以用 TYPE 命令。然而,当文本超过一屏幕时 TYPE 命令不会暂停。这就对你阅读文本很不方便。MORE 命令可以解决这个问题。MORE 使用标准输入流来获得源文本,并使用标准输出来显示文本,同时在显示时,它每显示完一屏文本就暂停。这使得你可以可以在很大范围事务里使用 MORE 命令,比如读一个长的文本文件,或者读有关一个命令的很长的帮助信息。这个命令的基本用法是很简单的:MORE<textfile.txt。另一个格式是“TYPE textfile.txt|MORE”。同样这个格式可以用在你想一页一页地查看程序输出的时候:LAME --longhelp|MORE。更多信息请参考下面的帮助文本(来自视窗 NT 4.0 英文帮助;有关视窗 9x/DOS 中的 MORE 命令,使用“MORE /?”命令来获得帮助)。


C:\>more /?
Displays output one screen at a time.

MORE [/E [/C] [/P] [/S] [/Tn] [+n]] < [drive:][path]filename
command-name | MORE [/E [/C] [/P] [/S] [/Tn] [+n]]
MORE /E [/C] [/P] [/S] [/Tn] [+n] [files]

    [drive:][path]filename  Specifies a file to display one
                            screen at a time.

    command-name            Specifies a command whose output
                            will be displayed.

    /E      Enable extended features
    /C      Clear screen before displaying page
    /P      Expand FormFeed characters
    /S      Squeeze multiple blank lines into a single line
    /Tn     Expand tabs to n spaces (default 8)

            Switches can be present in the MORE environment
            variable.

    +n      Start displaying the first file at line n

    files   List of files to be displayed. Files in the list
            are separated by blanks.

    If extended features are enabled, the following commands
    are accepted at the -- More -- prompt:

    P n     Display next n lines
    S n     Skip next n lines
    F       Display next file
    Q       Quit
    =       Show line number
    ?       Show help line
    <space> Display next page
    <ret>   Display next line
C:\>

返回 MS-DOS 基础知识