home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / tasm / whereis.doc < prev    next >
Text File  |  1988-08-28  |  1KB  |  49 lines

  1.  
  2.                           WHEREIS 1.0
  3.  
  4.   WHEREIS is a utility that searches a disk for files that match
  5.   a user-supplied file specification. The utility performs a
  6.   recursive search through any subdirectories it finds during
  7.   its search.
  8.  
  9.   To search an entire disk for a particular file specification,
  10.   you would execute WHEREIS like this:
  11.  
  12.     whereis *.asm
  13.  
  14.   This would search through the entire drive (the current drive)
  15.   and display each instance of a file matching the file
  16.   specification *.asm.
  17.  
  18.   You can also provide an explicit drive specifier:
  19.  
  20.     whereis a:\*.asm
  21.  
  22.   This will search drive A: for all matching files.
  23.  
  24.   If you don't want to search an entire disk, you can explicitly
  25.   define the path from which to start the recursive search. For
  26.   example,
  27.  
  28.     whereis c:\borland\tasm\*.asm
  29.  
  30.   will search for all files matching *.asm in the directory
  31.   c:\borland\tasm and any subdirectories below it.
  32.  
  33.   You can halt execution of WHEREIS by pressing any key while
  34.   it's running.
  35.  
  36.  
  37.  
  38.                     How to assemble WHEREIS
  39.  
  40.   In order to assemble WHEREIS, execute the following command on the
  41.   DOS command line:
  42.  
  43.     make -fwhereis
  44.  
  45.   This will execute the command-line make utility MAKE.EXE and pass
  46.   it the make file WHEREIS.MAK. For instructions on assembling
  47.   specific modules in the WHEREIS program, see the comments at the
  48.   top of each module.
  49.