コマンドラインのオフライン辞書はありますか? StarDictやArthaのようなものがあることは知っていますが、コマンドラインではどうでしょうか?
また、dict
を試しましたが、これはオンライン辞書です。
sdcvは、Stardictのコンソールバージョンです。
1。辞書をインストールします
ターミナルで次のコマンドを実行します。
Sudo apt-get install sdcv
2。辞書ファイルをダウンロードする
次のソースから要件に応じて辞書ファイルをダウンロードします。
3。ダウンロードした辞書をインストールする
sdcv
が辞書を探すディレクトリを作成します。
Sudo mkdir -p /usr/share/stardict/dic/
次のコマンドは、ダウンロードしたファイルが.gz
ファイルか.bz2
ファイルかによって異なります。
.bz2
ファイルの場合:
Sudo tar -xvjf downloaded.tar.bz2 -C /usr/share/stardict/dic
.gz
ファイルの場合:
Sudo tar -xvzf downlaoded.tar.gz -C /usr/share/stardict/dic
4。完了!
Wordを検索するには:
sdcv Word
dictd
インストールdict
コマンドはオフライン辞書でも簡単に使用できます。ローカルと一緒にdictd
デーモンをインストールするだけで十分、オフライン辞書。これは、このページの別の場所で提案されているsdcv
をインストールするよりもはるかに簡単な手順であることがわかりました。
以下に、dict-gcide
包括的な英語辞書とともにdictd
をインストールする方法を示します。 多くの辞書 が標準リポジトリから利用可能です。
$ Sudo apt-get install dict dictd dict-gcide
$ dict Word
3 definitions found
From The Collaborative International Dictionary of English v.0.48 [gcide]:
Word \Word\, n. [AS. Word; akin to OFries. & OS. Word, D. woord,
G. wort, Icel. or[eth], Sw. & Dan. ord, Goth. wa['u]rd,
OPruss. wirds, Lith. vardas a name, L. verbum a Word; or
perhaps to Gr. "rh`twr an orator. Cf. {Verb}.]
[1913 Webster]
1. The spoken sign of a conception or an idea; an articulate
or vocal sound, or a combination of articulate and vocal
sounds, uttered by the human voice, and by custom
expressing an idea or ideas; a single component part of
human speech or language; a constituent part of a
sentence; a term; a vocable. "A glutton of words." --Piers
Plowman.
[1913 Webster]
You cram these words into mine ears, against
The stomach of my sense. --Shak.
[1913 Webster]
Amongst men who confound their ideas with words,
there must be endless disputes. --Locke.
[1913 Webster]
2. Hence, the written or printed character, or combination of
characters, expressing such a term; as, the words on a
page.
[1913 Webster]
3. pl. Talk; discourse; speech; language.
[1913 Webster]
おそらくaspell
もインストールされているため、スペルミスのある単語の候補を提示できるという利点があります。テキストファイルでaspell
を直接呼び出すには:
aspell check text.txt
または、単一のWordで使用します。
echo wrd | aspell -a
Wordのスペルが正しいか、存在するかを確認するだけなら、grepを使用して、/ usr/share/dict /にあるWordリストファイルを調べることができます。これは、適切な wordlist =パッケージ。 「emu」が有効なWordかどうかを確認する例:
grep -i "^emu$" /usr/share/dict/american-english
ただし、定義はありません。
たとえば this link (warning:4.5 MB)などのサイトから辞書テキストファイルをダウンロードして、テキストを検索する方法grep "Word" dictionary.txt
のようなコマンドで
または、VIMエディターを使用して、コマンドでWordを検索することもできます。 /Word
。を押して n または N パターンの次または前の出現は、Wordの意味を見つけることでより楽しくなります。
dict
コマンドで無料の辞書を使用できます。
Sudo apt-get install dictd
を介して最初にインストールするSudo apt-cache search "dict-freedict"
Sudo apt-get install dict-freedict-eng-tur
dict -D
dict "Word"
dict -d fd-eng-tur "Word"