mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
14 lines
312 B
Plaintext
14 lines
312 B
Plaintext
# aspell
|
|
# Interactive spell-checker for use in a terminal
|
|
|
|
# Spell check a single file.
|
|
aspell check [FILE]
|
|
|
|
# List misspelled words from standard input (STDIN).
|
|
cat [FILE] | aspell list
|
|
|
|
# Check for known dictionary files.
|
|
aspell dicts
|
|
# Above appears to be short-form for the below command.
|
|
aspell dump dicts
|