Skip to content

Instantly share code, notes, and snippets.

@bbbco
Last active October 26, 2022 14:15
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 bbbco/d4b806b5cb242f04176b78b4c8009cf4 to your computer and use it in GitHub Desktop.
Save bbbco/d4b806b5cb242f04176b78b4c8009cf4 to your computer and use it in GitHub Desktop.
Five letter words with various characteristics #Wordle
# List of five letter words with no standard vowels (a, e, i, o, u) that were pulled from the *nix wordlist /usr/share/dict/words
# No guarantee is given that any of these words will ever show up in #Wordle
#
# cat /usr/share/dict/words | grep -e '^.\{5\}$' | tr '[:upper:]' '[:lower:]' | grep -e '^[^aeiou]\+$'
crypt
cymry
dryly
dryth
glynn
glyph
gypsy
gypsy
lymph
lynch
myrrh
nymph
psych
pygmy
pygmy
rhymy
scyld
scyth
shyly
slyly
smyth
sylph
synch
thymy
tryst
wryly
xylyl
# List of five letter words with three of the same characters that were pulled from the *nix wordlist /usr/share/dict/words
# No guarantee is given that any of these words will ever show up in #Wordle
#
# for i in $(cat /usr/share/dict/words | grep -e '^.\{5\}$'); do
# echo ${i} | fold -w1 | sort | uniq -c | grep "3" &>/dev/null && echo "$i"
# done
abaca
acana
acara
added
afara
agama
ajaja
ajava
akala
akasa
alada
alala
allyl
amaas
amaga
amala
amapa
anama
anana
araba
araca
arara
asana
assis
babby
beeve
belee
besee
bobby
bubby
caama
cocci
cocco
daddy
diddy
doddy
eeler
eerie
emcee
emeer
error
esere
faffy
feere
feeze
feoff
flaff
fluff
fuffy
gogga
heeze
kakke
keeve
levee
lolly
mamma
mammy
meece
meese
melee
momme
mommy
mummy
nanny
neele
neese
neeze
ninny
ninon
nunni
odoom
oopod
ovolo
pappi
pappy
pedee
peele
peeve
peppy
pewee
pippy
poppa
poppy
potoo
puppy
reese
reeve
reree
resee
sassy
seege
sissy
stoss
stuss
swiss
tatta
tatty
tepee
titty
totty
tutti
tutty
ululu
uninn
uppop
urubu
urucu
waapa
weeze
# List of five letter words that were pulled from the *nix wordlist /usr/share/dict/words
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment