Words (Unix)
From Wikipedia, the free encyclopedia
- The correct title of this article is words (Unix). The initial letter is shown capitalized due to technical restrictions.
words is a standard file on all Unix and Unix-like operating system, and is simply a newline delimited list of dictionary words. It is used, for instance, by spell checking programs.
With Unix's text processing capabilities, one can use the words file for many purposes. For example, using the grep tool, one can find all three letter words without any vowels, using regular expressions:
egrep "^[^AEIOUaeiou][^AEIOUaeiou][^AEIOUaeiou]$" /usr/share/dict/words
The words file is usually stored in /usr/share/dict/words, or /usr/share/words.
A words file is also used to contain words related to a specific topic. One such example of this is for profanity censoring software that replaces profanities, for example, posted on the web with strings such as "###" or some other replacement. Words that are posted in this example are compared with a "bad-words" file and then if there is an occurrence of such a word, it is summarily replaced.