2018-07-15 11:26:04 +02:00
|
|
|
# aspell
|
|
|
|
|
|
|
|
> Interactive spell checker.
|
2021-07-09 16:45:55 +02:00
|
|
|
> More information: <http://aspell.net/>.
|
2018-07-15 11:26:04 +02:00
|
|
|
|
|
|
|
- Spell check a single file:
|
|
|
|
|
|
|
|
`aspell check {{path/to/file}}`
|
|
|
|
|
2023-08-09 07:29:02 +02:00
|
|
|
- List misspelled words from `stdin`:
|
2018-07-15 11:26:04 +02:00
|
|
|
|
2022-12-04 10:12:49 +01:00
|
|
|
`cat {{path/to/file}} | aspell list`
|
2018-07-15 11:26:04 +02:00
|
|
|
|
|
|
|
- Show available dictionary languages:
|
|
|
|
|
|
|
|
`aspell dicts`
|
|
|
|
|
2022-10-19 19:02:08 +03:00
|
|
|
- Run `aspell` with a different language (takes two-letter ISO 639 language code):
|
2018-07-15 11:26:04 +02:00
|
|
|
|
|
|
|
`aspell --lang={{cs}}`
|
|
|
|
|
2023-08-09 07:29:02 +02:00
|
|
|
- List misspelled words from `stdin` and ignore words from personal word list:
|
2018-07-15 11:26:04 +02:00
|
|
|
|
2022-12-04 10:12:49 +01:00
|
|
|
`cat {{path/to/file}} | aspell --personal={{personal-word-list.pws}} list`
|