Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created January 23, 2021 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miguelmota/493e48da676098d450e4a644129c5cc6 to your computer and use it in GitHub Desktop.
Save miguelmota/493e48da676098d450e4a644129c5cc6 to your computer and use it in GitHub Desktop.
Bash spellcheck list of files using aspell
for f in *.txt ; do echo $f ; aspell list < $f | sort | uniq -c ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment