home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / allokay < prev    next >
Text File  |  1996-10-01  |  371b  |  14 lines

  1. #!/bin/sh
  2.  
  3. # allokay
  4. # This program works with hspell.
  5. # If all of the spelling errors noted by "hspell" are actually
  6. # okay words, run this program.
  7.  
  8. # This program adds all of the "erroneous" words last found by
  9. # hspell (and stored in file ,errs) to the file "okayword".
  10.  
  11. sed -e 's/^[^:]*://' ,errs >> okayword
  12. sort -u okayword > okayword.srt
  13. mv okayword.srt okayword
  14.