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.
FIND
Notes  Examples
────────────────────────────────────────────────────────────────────────────
 
                                    FIND
 
Searches for a specific string of text in a file or files.
 
After searching the specified files, FIND displays any lines of text that
contain the specified string.
 
Syntax
 
    FIND [/V] [/C] [/N] [/I] "string" [[drive:][path]filename[...]]
 
Parameters
 
"string"
    Specifies the group of characters you want to search for. You must
    enclose the text for string in quotation marks.
 
[drive:][path]filename
    Specifies the location and name of the file in which to search for the
    specified string.
 
Switches
 
/V
    Displays all lines not containing the specified string.
 
/C
    Displays only a count of the lines that contain the specified string.
 
/N
    Precedes each line with the file's line number.
 
/I
    Specifies that the search is not to be case-sensitive.
 
                                      ♦