轻松离线dictd安装

轻松离线dictd安装

有没有命令行离线词典?我知道有一些像 星际译王阿尔莎但是在命令行中怎么样?

另外,我试过,dict但它是一本在线词典。

答案1

安全数据表是控制台版本星爵

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.完成!

要搜索单词,请使用:

sdcv word

在此处输入图片描述

答案2

轻松离线dictd安装

基本原理

dict命令可轻松与离线词典一起使用。dictd只需安装守护进程及其依赖项以及本地离线词典即可。事实证明,这比sdcv本页其他地方建议的安装过程要简单得多。

安装

下面显示了如何安装dictd综合dict-gcide英语词典。更多词典可从标准存储库获得。

$ 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]

答案3

您可能还aspell安装了,它的优点是可以对拼写错误的单词提供建议。您可以aspell直接在文本文件中调用:

aspell check text.txt

或者用在一个单词上:

echo wrd | aspell -a

答案4

您可以使用以下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"

相关内容