home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff274.lzh / LookFor / readme < prev    next >
Text File  |  1989-11-16  |  3KB  |  63 lines

  1.  
  2. LookFor by Mark Schretlen 88-12
  3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. LookFor is a general "find that file" utility which is handy for hard
  5. drives, multiple drives, and multi-layered paths.
  6.  
  7. usage: LookFor [ANY] <filename> [ON] [drive(s)|ALL]
  8.  
  9. Invoke from the CLI only.
  10.  
  11. keywords: (optional)
  12. ANY looks for the pattern anywhere within the filename (unachored).
  13. ON must be specified for a multi-drive search (separate drives with commas).
  14. ON ALL looks for the file on all drives.
  15.  
  16. patterns: (filename only)
  17. ?  any single character ( LookFor ? gives help message)
  18. *  any number of characters
  19.  
  20. ctrl-c aborts LookFor cleanly
  21.  
  22. Examples:
  23.  
  24.   Command Line    ---------->   finds these files:
  25.  
  26.   LookFor abc     ---------->   abc                ... in the current dir
  27.                                                        & its subdirectories
  28.   LookFor any .c  ---------->   abc.c xyz.c my.cli ... in the current dir
  29.                                                        & its subdirectories
  30.   LookFor *.c     ---------->   abc.c  xyz.c       ... in the current dir
  31.                                                        & its subdirectories
  32.   LookFor ?.c     ---------->   a.c   x.c          ... in the current dir
  33.                                                        & its subdirectories
  34.   LookFor ?.*     ---------->   a.cpr  f.out       ... in the current dir
  35.                                                        & its subdirectories
  36.   LookFor .*      ---------->   .edrc  .profile    ... in the current dir
  37.                                                        & its subdirectories
  38.   LookFor *       ---------->   ALL FILES          ... in the current dir
  39.                                                        & its subdirectories
  40.   LookFor abc on df1: ------>   abc                ... on df1:
  41.   LookFor abc on df1:,ram: ->   abc                ... on df1: & ram:
  42.   LookFor any abc df1: ----->   abc xyzabcz abcxyz ... on df1:
  43.   LookFor any abc on all --->   abc xyzabcz abcxyz ... on ram:,vdk:,df0: etc
  44.   LookFor any abc ---------->   xyzabc abc zabcefg ... in the current dir
  45.                                                        & its subdirectories
  46.  
  47. LookFor is a public domain program. Please distribute freely.
  48.  
  49. Revisions on the 88-12 version:
  50. - due to popular demand, more restrictive and simpler pattern matching.
  51. - 1.3 compatible ....
  52.       * the code is now pure and re-entrant so it can be made resident.
  53.       * FastFileSystem supported.
  54.       * recognizes Rad: (always has).
  55. - CTRL-c aborts cleanly with no memory loss.
  56. - spelling corrected on help messages :-)
  57.  
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59.                                         Mark Schretlen
  60.                                         Jan 7, 1989
  61.                                         (403)289-8134
  62.                                         GEnie: M.SCHRETLEN
  63.