home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug028.arc / FIND.DOC < prev    next >
Text File  |  1979-12-31  |  1KB  |  31 lines

  1.  
  2.         -----FIND.COM-----
  3. by Ward Christensen
  4.  
  5. OVERVIEW:
  6.     Finds ASCII, upper case character strings in a file.
  7. May take a generic file name, thus may search all .ASM files
  8. on a disk.  Also very useful for finding things in MAST.CAT - 
  9. for example if you have multiple VDM routines: VDMSCROL.ASM,
  10. PRINTVDM.ASM, etc  you could FIND MAST.CAT VDM to see them all.
  11.  
  12. USAGE:
  13.  
  14.     find b:*.asm alpha
  15.  
  16. will find all occurrences of ALPHA in all .ASM files on B:.
  17.     Used with LIST.COM which takes a starting line number,
  18. you can: 1) use find to find a particular part of the code,
  19. then 2) use LIST specifying a starting line number just before
  20. the part of the code you wanted to see.
  21.  
  22. DEPENDENCIES:
  23.     Note that FIND is a quickie program - it gets the label
  24. to search for from the second FCB so you can't put some
  25. special characters in the ASCII string.  I.E.
  26.  
  27.     find b:*.asm in.to
  28.  
  29. would find IN (since .to would be put as the filetype).
  30.  
  31.