Skip to content

Instantly share code, notes, and snippets.

@trevor-vaughan
Created January 7, 2020 14:17
Show Gist options
  • Save trevor-vaughan/c467ee88531b99de81681ec7d56c6f65 to your computer and use it in GitHub Desktop.
Save trevor-vaughan/c467ee88531b99de81681ec7d56c6f65 to your computer and use it in GitHub Desktop.
Generate word list of given lengths from aspell dictionaries
#!/bin/sh
aspell -l en dump master | grep -v "'" | grep -v "^[[:upper:]]" | sort -n | grep -x '.\{3,10\}' > test_dict
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment