home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / enh-spell / bad_word next >
Text File  |  1990-02-20  |  791b  |  22 lines

  1. #! /bin/csh -f
  2. # Learn an incorrect spelling of a word or words. (Spellings which
  3. # might be generated from general spelling rules. See man-page for 'spell'.)
  4. #
  5. # Creates and maintains files
  6. #    ~/lib/stop    ... sorted text of words to suppliment standard stop-list
  7. #    ~/lib/hstop   ... supplimental and standard lists, merged and hashed
  8. #    ~/lib/stop.temp  ... scratch file
  9. #    ~/lib/hstop.temp ... scratch file
  10. # I don't know why I need to make a copy of /usr/dict/hstop, but
  11. # that's the only way I found to make it work. .. djones
  12.  
  13. # See also learn_word
  14.  
  15. echo $* | tr ' ' '\012' >> ~/lib/stop
  16. sort -u ~/lib/stop > ~/lib/stop.temp
  17. mv ~/lib/stop.temp ~/lib/stop
  18. cp /usr/dict/hstop ~/lib/hstop.temp
  19. /usr/bin/spellin ~/lib/hstop.temp < ~/lib/stop > ~/lib/hstop
  20. rm ~/lib/hstop.temp
  21.