Last active
August 29, 2015 14:02
-
-
Save johanbrook/b4bc97dd130cf94524fd to your computer and use it in GitHub Desktop.
Find misspelled words with the GNU utility `aspell` from TeX files.
This file contains 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
#!/usr/bin/env bash | |
echo "** Misspelled English words **" | |
cat sections/*.tex abstracts/abstract_english.tex \ | |
| aspell \ | |
--personal ./wordlist \ | |
-W 3 \ | |
-d en \ | |
list \ | |
| sort | uniq -u; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment