Skip to content

Instantly share code, notes, and snippets.

@johanbrook
Last active August 29, 2015 14:02
Show Gist options
  • Save johanbrook/b4bc97dd130cf94524fd to your computer and use it in GitHub Desktop.
Save johanbrook/b4bc97dd130cf94524fd to your computer and use it in GitHub Desktop.
Find misspelled words with the GNU utility `aspell` from TeX files.
#!/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