LOCATE - Text file search

   LOCATE is a fast utility for finding  specified  strings  in  text
files.  Unlike most other such utilities, LOCATE allows you to search
for several strings at the same time.

   The format of the LOCATE command is:

            LOCATE <filespec> "text"... [options ...]

   The available options are:

     +c      - Use CASE-SENSITIVE search
     +r      - Recurse into SUB-DIRECTORIES
     +t      - Display lines where text is found
     -v      - Inhibit line number display

   Examples:

     locate *.c "printf" "scanf"
     locate C:\*.c "strcpy" +r
