Aspell

如何導出我的 aspell 字典?

  • February 13, 2018

目前,我正在編寫一份關於數學的大型 LaTeX 文件,並且有時我會對其進行一些拼寫檢查。您可以猜到,有很多單詞不在標準詞典中。但我已將它們與aspellwith添加a到標準字典中。

aspell -d de -t -c my-document.tex

有沒有辦法導出我的話(只有那些)?

恢復似乎很簡單:另一個問題

處理時,aspell如果您不確定東西儲存在哪裡,最好查閱其配置以找出答案。

$ aspell --lang=en dump config | less

將告訴您添加的單詞在哪裡結束的 2 項如下:

# home-dir (string)
#   location for personal files
# default: <$HOME|./> = /home/saml

# personal (string)
#   personal dictionary file name
# default: .aspell.<lang>.pws = .aspell.en.pws

因此,有了這些資訊,您就可以查閱該文件$HOME/.aspell.en.pws。其中包含添加的單詞。

例子

現在說我們有這個文件。

$ cat sample.txt 
smurf
loook

現在我們對文件進行拼寫檢查,sample.txt.

$ aspell -t -c sample.txt

                    #1

因此,我們loook以與您描述的相同的方式添加單詞,並a與選定的單詞一起使用。

現在,如果我們查閱上述文件。

$ cat .aspell.en.pws 
personal_ws-1.1 en 1 
loook

參考

引用自:https://unix.stackexchange.com/questions/116283