Skip to content

Instantly share code, notes, and snippets.

@eqhmcow
Created December 30, 2009 16:00
Show Gist options
  • Save eqhmcow/266147 to your computer and use it in GitHub Desktop.
Save eqhmcow/266147 to your computer and use it in GitHub Desktop.
interactive aspell
#!/bin/bash
while read i
do echo "$i"; for w in $(echo "$i" | aspell list)
do echo "$w" | aspell pipe | grep --color=auto '^&'
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment