blob: 7b36e783bb24a6949ca34478bfc940f0b94e426c (
plain)
1
2
3
4
5
6
7
8
|
# Make a list of 'flat' words.
# A flat word is comprised only of letters that do not have risers or descenders
#
# SJP 1 Jan 2021
flats=aceimnorsuvwxz
grep -ix "[${flats}]*" < words | awk '{print tolower($0)}' | sed -rn '/^.{3,99}/p' > flatwords.txt
|