Example:
Find all words that end in "me"
assume
consume
presume
...
Find all words that end in "me"
assume
consume
presume
...
yliu out by posting your solution
yliu on February 11, 2009, 09:08 AM UTC"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."