Forrest logo
back to context overview

aspell

List of commands for aspell:

  • aspell:tldr:00691 aspell: List misspelled words from standard input.
    $ cat ${filename} | aspell list
    try on your machine
    explain this command
  • aspell:tldr:470b2 aspell: Spell check a single file.
    $ aspell check ${filename}
    try on your machine
    explain this command
  • aspell:tldr:47bf9 aspell: List misspelled words from standard input and ignore words from personal word list.
    $ cat ${filename} | aspell --personal=${personal-word-list-pws} list
    try on your machine
    explain this command
  • aspell:tldr:d72ea aspell: Show available dictionary languages.
    $ aspell dicts
    try on your machine
    explain this command
  • aspell:tldr:d79ee aspell: Run `aspell` with a different language (takes two-letter ISO 639 language code).
    $ aspell --lang=${cs}
    try on your machine
    explain this command
back to context overview