home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / text / define.README < prev    next >
Encoding:
Text File  |  1993-07-17  |  1.6 KB  |  52 lines

  1. //
  2. // Define: a simple dictionary lookup program
  3. // for the Unix shell on the NeXT
  4. //
  5.  
  6.  I wrote this one slow afternoon (as if there are any slow afternoons
  7. Cornell), using the examples from the man notes on webster's dictionary.
  8. It does not have many frills, but it should serve as a good example
  9. of how to access the dictionary and thesaurus from the shell interface.
  10.  
  11.  I've included binaries for both System 1.0 and 2.x. Which is which
  12. should be obvious.
  13.  To compile the program from the source, you will need to obtain
  14. libtext.a and libbtree.a from NeXT Tech Support. Don't ask me for them,
  15. please..... 
  16.  
  17.     cc -O -o define define.c -ltext -lbtree -lsys_s
  18.  
  19.  
  20.  The program is pretty much self explanatory. The command to call it is
  21.  
  22.       csh>   define word
  23.  
  24.   It will print out the definition of word on the standard output. You can
  25. redirect the output using the standard redirection command (>). There are
  26. two options:
  27.  
  28.      csh>  define -t word
  29.      csh>  define +t word
  30.  
  31.   Note, these two options cannot be used together. The -t option will define
  32. word using only the thesaurus. The +t option will define it using BOTH the
  33. dictionary and thesaurus.
  34.  
  35.   The format of webster's dictionary is a bit strange if you are using a 
  36. shell window. If the word is a compound word, just run them together, 
  37. for example:
  38.      csh> define hurricanelamp
  39. will define "hurricane lamp." 
  40.  
  41.   All bugs are my own. Send you comments, mail, money (if you feel like
  42. it, I would be very grateful) to:
  43.  
  44.     Jiro Nakamura  |
  45.     ----------------   
  46.     E-mail:   jiro@shaman.com
  47.     
  48.     Snail-mail:    Jiro Nakamura
  49.             c/o The Reppy's
  50.             493 Ellis Hollow Creek Rd.
  51.             Ithaca, NY 14850
  52.