Skip to content

Instantly share code, notes, and snippets.

@rexmortus
Created August 6, 2014 00:47
Show Gist options
  • Save rexmortus/7768856d9e7fe174fdf8 to your computer and use it in GitHub Desktop.
Save rexmortus/7768856d9e7fe174fdf8 to your computer and use it in GitHub Desktop.
find . -name '*.md' -print0 | while read -d $'\0' -r file ; do
printf '\e[1;34mSpellchecking: %s\e[0m\n' "$file"
ispell -a < "$file" | grep ^\&
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment