Ubuntu 16.04 LTS 默认自带一个程序,它完全在终端中运行,可以对文本文件进行拼写检查。但我记不清这个程序叫什么了。这个程序是什么?我该如何在终端上运行它~/Documents/file
?
答案1
Ubuntu 显然带有二默认的拼写检查程序:
$ apropos spell
aspell (1) - interactive spell checker
aspell-autobuildhash (8) - Autobuilding aspell hash files for some dicts
aspell-import (1) - import old personal dictionaries into GNU Aspell
enchant (1) - a spellchecker
enchant-lsmod (1) - Show information about available spell-checking module...
enchant
也是一个ispell
兼容的拼写检查器,并列在ISO 清单,因此默认安装。
虽然默认情况下未安装,但 Vim 的完整版本也支持拼写检查并且在处理更复杂的文件时表现更好(例如,仅对 HTML 文本进行拼写检查)。
答案2
我需要的程序是aspell
。运行起来非常简单:
aspell check ~/Documents/file
它将根据区域设置自动检查文件中的拼写错误。有关它的更多信息,请参见在手册页中。
希望这对某人有帮助!