oem.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
MORE--Examples
Syntax  Note
────────────────────────────────────────────────────────────────────────────
 
                               MORE──Examples
 
Suppose you have a long file named CLIENTS.NEW that you want to view on your
screen. Either of the following two commands redirects the file through the
MORE command to begin displaying the contents of the file:
 
    more < clients.new
 
    type clients.new | more
 
The MORE command displays the first screen of information from CLIENTS.NEW
and then prompts you with the following message:
 
    ── More ──
 
You can then press any key to see the next screen of information.
 
                                      ♦