Created
March 11, 2012 17:00
-
-
Save jappy/2017124 to your computer and use it in GitHub Desktop.
using unix aspell on mac os x instead of unix spell, finds words not in dictionary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tr -sc 'A-Za-z' '\n' < filename.txt | aspell list --mode=none | |
same as: | |
tr -sc 'A-Za-z' '\n' < filename.txt | spell -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo port install aspell | |
sudo port install aspell-dict-en |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment