2018-07-15 10:26:04 +01:00
|
|
|
# aspell
|
|
|
|
|
|
|
|
> Interactive spell checker.
|
|
|
|
|
|
|
|
- Spell check a single file:
|
|
|
|
|
|
|
|
`aspell check {{path/to/file}}`
|
|
|
|
|
2019-04-06 13:34:03 +01:00
|
|
|
- List misspelled words from standard input:
|
2018-07-15 10:26:04 +01:00
|
|
|
|
|
|
|
`cat {{file}} | aspell list`
|
|
|
|
|
|
|
|
- Show available dictionary languages:
|
|
|
|
|
|
|
|
`aspell dicts`
|
|
|
|
|
|
|
|
- Run aspell with different language (takes two letter ISO 639 language code):
|
|
|
|
|
|
|
|
`aspell --lang={{cs}}`
|
|
|
|
|
2019-04-06 13:34:03 +01:00
|
|
|
- List misspelled words from standard input and ignore words from personal word list:
|
2018-07-15 10:26:04 +01:00
|
|
|
|
|
|
|
`cat {{file}} | aspell --personal={{personal-word-list.pws}} {{list}}`
|