home *** CD-ROM | disk | FTP | other *** search
/ The UNIX CD Bookshelf / OREILLY_TUCB_UNIX_CD.iso / upt / examples / SOURCES / GLIMPSE / GLI40SRC.Z / GLI40SRC / glimpse-4.0.src / README < prev    next >
Encoding:
Text File  |  1996-11-22  |  2.2 KB  |  61 lines

  1. GLIMPSE 3.5: searching entire file systems
  2. (http://glimpse.cs.arizona.edu/)
  3.  
  4. Glimpse is a very powerful indexing and query system that allows you to
  5. search through all your files very quickly.  It can be used by
  6. individuals for their personal file systems as well as by organizations
  7. for large data collections.  Glimpse is also the basis of GlimpseHTTP,
  8. which provides search for web sites, and it is the default search engine 
  9. in Harvest (see below).
  10.  
  11. Glimpseindex, which you run by saying "glimpseindex DIR" builds an
  12. index of all text files in the tree rooted at DIR.  
  13. (e.g., glimpseindex ~ indexes all your files.) With it, glimpse can
  14. search through all files much the same way as agrep (or any other
  15. grep), except that you don't have to specify file names and the search
  16. is fast.  For example,
  17.  
  18.     glimpse -1 unbelievable
  19.  
  20. will find all occurrences (in all your files!) of "unbelievable" 
  21. allowing one spelling error;
  22.  
  23.     glimpse -F mail arizona 
  24.  
  25. will find all occurrences of "arizona" in all files with "mail" somewhere
  26. in their name;
  27.  
  28.     glimpse  'Arizona desert;windsurfing' 
  29.  
  30. will find all lines that contain both "Arizona desert" and "windsurfing".
  31.  
  32. Glimpse supports three types of indexes: a tiny one (2-3% of the
  33. size of all files), a small one (7-9%), and a medium one (20-30%).
  34. The larger the index the faster the search.
  35. Glimpse supports most of agrep's options (agrep is our powerful version
  36. of grep, and it is part of glimpse) including approximate matching
  37. (e.g., finding misspelled words), Boolean queries, and even some
  38. limited forms of regular expressions.
  39.  
  40. The WWW home page for glimpse is in
  41.     http://glimpse.cs.arizona.edu/
  42. It includes links to the source, binaries for most UNIX systems,
  43. documentations, articles, and more.
  44.  
  45. GlimpseHTTP home page is in
  46.     http://glimpse.cs.arizona.edu/ghttp/
  47.  
  48. Harvest's WWW home page is
  49.     http://harvest.cs.colorado.edu/
  50. (Harvest is an integrated set of tools to gather, extract,
  51. organize, search, cache, and replicate relevant information
  52. across the Internet.) 
  53.  
  54. Mail glimpse-request@cs.arizona.edu to be added to the glimpse mailing list.
  55. Mail glimpse@cs.arizona.edu to report bugs, ask questions, discuss
  56. tricks for using glimpse, etc.  (This is a moderated mailing list.)
  57.  
  58. Udi Manber, Burra Gopal, and Sun Wu.
  59.  
  60.  
  61.