Skip to content

Instantly share code, notes, and snippets.

@jmdeldin
Created May 14, 2013 01:29
Show Gist options
  • Save jmdeldin/5572953 to your computer and use it in GitHub Desktop.
Save jmdeldin/5572953 to your computer and use it in GitHub Desktop.
Spell check all Markdown files
aspell list < $(find . -name '*.md') | sort | tr '[A-Z]' '[a-z]' | uniq -c | sort -rn
@jmdeldin
Copy link
Author

Replace aspell list with hunspell -l for Hunspell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment