有没有办法列出所有可用的词典hunspell
?就像是aspell dump dicts
。printf | hunspell -D
打印太多垃圾,我想查询hunspell
自身,而不是做类似的事情find /usr/share/myspell/dicts/ -name '*.dic' | cut -d '/' -f 6 | cut -d '.' -f 1 | sort
。
答案1
这个怎么样:
LANG=C </dev/null hunspell -D|&sed -n '/AVAILABLE DICTIONARIES/,/LOADED DICTIONARIES/p'|awk -F / '/\// { print $NF }'|sort -u
这hunspell
将从输出中删除搜索路径并仅列出可用的字典名称。如果您想删除连字词典,您可以添加|grep -v hyph
...