HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

hunspell — Check spelling. More information: <https://manned.org/hunspell>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
httpscommandhunspellcliinformationcheckmorespelling

Problem

How to use the hunspell command: Check spelling. More information: <https://manned.org/hunspell>.

Solution

hunspell — Check spelling. More information: <https://manned.org/hunspell>.

Check the spelling of a file:
hunspell {{path/to/file}}


Check the spelling of a file with the en_US dictionary:
hunspell -d {{en_US}} {{path/to/file}}


List misspelled words in a file:
hunspell -l {{path/to/file}}

Code Snippets

Check the spelling of a file

hunspell {{path/to/file}}

Check the spelling of a file with the en_US dictionary

hunspell -d {{en_US}} {{path/to/file}}

List misspelled words in a file

hunspell -l {{path/to/file}}

Context

tldr-pages: common/hunspell

Revisions (0)

No revisions yet.