Last active
October 26, 2022 14:15
-
-
Save bbbco/d4b806b5cb242f04176b78b4c8009cf4 to your computer and use it in GitHub Desktop.
Five letter words with various characteristics #Wordle
This file contains hidden or 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
# 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 |
This file contains hidden or 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
# 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 |
This file contains hidden or 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
# 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