Skip to content

Instantly share code, notes, and snippets.

@lucaswiman
Created May 30, 2023 18: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 lucaswiman/bafe274ee231b502db1cd325a79ab5d4 to your computer and use it in GitHub Desktop.
Save lucaswiman/bafe274ee231b502db1cd325a79ab5d4 to your computer and use it in GitHub Desktop.
Cheat at wordle
cat /usr/share/dict/words \
| tr '[:upper:]' '[:lower:]' \
| grep -E '^.....$' \
| shuf | head -n 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment