home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 495a.lha / ISpell_v3.1ljr / man / makedict.hlp < prev    next >
Text File  |  1991-04-06  |  724b  |  22 lines

  1. dict.195 - came with the distribution
  2. dict.2   - dict.195 munched with /usr/dict/words
  3. dict.3   - dict.195 munched with /usr/dict/words and /sys/dict
  4.  
  5. Here's what I used to make the dictionary files:
  6.  
  7. cat /usr/dict/words dict.195 | munchlist -w "-'.A-Za-z" -d /dev/null | sort -uf -o dict.2
  8. cat /sys/dict dict.2 | munchlist -w "-'.A-Za-z" -d /dev/null | sort -uf -o dict.3
  9.  
  10. Here's what I use to maintain my own dictionary:
  11.  
  12. mv ~/.ispell_words ~/.ispell_words.bak
  13. cat ~/.ispell_words.bak | munchlist -w "-'.A-Za-z" -d /dev/null | sort -uf -o ~/.ispell_words
  14.  
  15. or:
  16.  
  17. mv ~/.ispell_words ~/.ispell_words.bak
  18. cat ~/.ispell_words.bak | munchlist -w "-'.A-Za-z" | sort -uf -o ~/.ispell_words
  19.  
  20. -- Ashwin Ram, July 1987.
  21.    <Ram@yale>
  22.