Example:
Find all words that end in "me"
assume
consume
presume
...
Find all words that end in "me"
assume
consume
presume
...
"To find words that end in "me," try: egrep "^.{3,3}me$" /usr/share/dict/words The 3,3 means 3 characters minimum (anything less is invalid) and 3 maximum. So increase that second number to get more words."