I'm looking for a file that is a wordlist and also is set up by type of word. For example something in this format

Nouns: {
    bus
    car
    deck
    elephant
    ...
}
Adjectives {
    awful
    bashful
    ...
}
Advervb {
    ...
}

Any ideas?

link|improve this question

feedback

3 Answers

Most flavors of linux ship with a file called dictionary. It's got all English words you might want, but they are not categorized.

link|improve this answer
The whole point is to use different categories – qwertymk Jan 23 '11 at 4:39
feedback

One problem is that the word type depends on usage and context. For example, 'root' can be a noun or verb.

On a Unix/Linux system with aspell installed, this will give you all the words in the dictionary:

aspell dump master

Finally, see the related question: Need free English dictionary or Corpus, ultimately for a MySQL database

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.