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

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