aspell, ispell: move from linux to common (#13437)

This commit is contained in:
Cornelius Roemer
2024-08-13 19:43:20 +02:00
committed by GitHub
parent a089572a73
commit 704d7a0e75
8 changed files with 0 additions and 0 deletions

24
pages.zh/common/aspell.md Normal file
View File

@@ -0,0 +1,24 @@
# aspell
> 交互式拼写检查工具。
> 更多信息:<http://aspell.net/>.
- 为一个文件做拼写检查:
`aspell check {{文件路径}}`
- 列出来自标准输入的拼写错误单词:
`cat {{文件}} | aspell list`
- 列出可用的字典语言:
`aspell dicts`
- 指定不同的语言(取 ISO 639 语言代码的 2 个字母)来运行 `aspell`
`aspell --lang={{cs}}`
- 列出来自标准输入的拼写错误单词,并且忽略个人单词列表中的单词:
`cat {{文件}} | aspell --personal={{个人单词列表.pws}} list`