Skip to content

Instantly share code, notes, and snippets.

@criswell
Created September 22, 2016 13:52
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 criswell/913a3ac02fcd6a90c3eaf7b6594cbf81 to your computer and use it in GitHub Desktop.
Save criswell/913a3ac02fcd6a90c3eaf7b6594cbf81 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
FILESY=$(find . -name '*.asc')
for F in $FILESY
do
echo ">> PROCESSING $F"
cat $F | aspell list --personal=./.aspell.en.pws --ignore-case
echo ""
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment