Spell check entire codebase Requires aspell. Install using brew install aspell on Mac OS X. From STDIN cat *.txt | aspell -l EN-US --mode=tex list Whole directory for f in *.txt ; do echo $f ; aspell list < $f | sort | uniq -c ; done