home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / PC_HELP1.ZIP / HELPDOS3.ZIP / FIND.### < prev    next >
Encoding:
Text File  |  1985-12-28  |  883 b   |  19 lines

  1. COMMAND:  FIND filter
  2.  
  3. FUNCTION: Sends to the standard output device all lines from the specified
  4.           file names that contain the specified character string.
  5.  
  6. FORMAT:   FIND [/V][/C][/N]"string"[[d:][path]filename[.ext]...]
  7.  
  8. TYPE:     DOS external command
  9.  
  10. REMARKS:  /V causes all lines not containing the string to be displayed.
  11.           /C causes only a count of the number of lines that contain the
  12.           string to be displayed, not the lines themselves.
  13.           /N causes the relative line number of each matching line to be
  14.           displayed before the line itself.
  15.           The character string must be enclosed within double quotes. Global
  16.           file name characters are not allowed in filespec. The filespec
  17.           can be omitted when FIND is used to filter input from another
  18.           command, as in DIR | FIND "BAK", for example.
  19.