home *** CD-ROM | disk | FTP | other *** search
/ Play and Learn 2 / 19941.ZIP / 19941 / COMREF / DOS5TUT / FIND.DAT < prev    next >
Encoding:
Text File  |  1994-02-05  |  343 b   |  13 lines

  1. Explanation of the FIND command. 
  2. It is EXTERNAL.
  3.  
  4. This command will search for a specific 
  5. string of text in one or more files.
  6.  
  7. Example:
  8.        To look for the string "Hello" in 
  9.        the file Text.bat
  10.        and not have FIND be case-sensitive 
  11.        you would use something like this:
  12.            find /i "Hello" a:text.bat
  13.