15 lines
475 B
Markdown
15 lines
475 B
Markdown
|
# Nouns
|
||
|
|
||
|
The `nouns.txt` file is based on the [Moby Part of Speech List] by Grady Ward,
|
||
|
released into the public domain and available on [Project Gutenburg].
|
||
|
|
||
|
Commands to generate the `nouns.txt` file:
|
||
|
|
||
|
```
|
||
|
curl -LO https://www.gutenberg.org/files/3203/files/mobypos.txt
|
||
|
cat mobypos.txt | grep "\N" > nouns.txt
|
||
|
```
|
||
|
|
||
|
[Moby Part of Speech List]: https://web.archive.org/web/20170930060409/http://icon.shef.ac.uk/Moby/
|
||
|
[Project Gutenburg]: https://www.gutenberg.org/ebooks/3203
|