Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.

dgrep

http://www.puzzlers.org/dokuwiki/doku.php?id=solving%3Awordlists%3Adictionary_search&user_string=%s&dictname=allwords.txt&wordlength=${size=0}&casesensitivity=N&sense=Y&user_string2=&sense2=&querytype=1&resulttype=list[no url encoding]
Dictionary Grep Search. Search words by regular expressions.

. is a wildcard character
* allows repetitions of the previous character (zero or more)
^ marks the beginning
$ marks the end
[] encloses a set of possibilities
Option -size specifies the word length.

Examples:

dgrep man
finds manager, batman, germanium, etc.

dgrep man..er
finds manager, womanizers, etc.

dgrep man.*er
finds manufacturer, commander, good-mannered, etc.

dgrep ^man.*er
finds manufacturer, but NOT commander

dgrep man.*er$
finds manufacturer, but NOT manufacturers

dgrep ^q[aeiou]*s$
finds queues, but NOT queens

dgrep man.*er -size 6
finds manner, but no manufacturer
    
76 uses - Created 2006-01-11 21:30:10 - Last used 2021-10-16 04:42:36
Is this command broken? Tell Jon if you know how to fix it.
Do you find this command offensive? Let Jon know.