Created
September 22, 2016 13:52
-
-
Save criswell/913a3ac02fcd6a90c3eaf7b6594cbf81 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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