从 Linux 命令行成为更好的作家
【摘要】 在本文中,让我们了解一下如何从 Unix / Linux 命令行纠正单词拼写、识别单词含义、识别单词反义词。
在本文中,让我们了解一下如何从 Unix / Linux 命令行纠正单词拼写、识别单词含义、识别单词反义词。
1. 使用Look 命令查找以给定字符串开头的单词
使用 Unix look 命令查找单词的正确拼写,如下所示。
$ look typogr
typograph
typographer
typographers
typographia
typographic
typographical
typographically
typographies
typographist
typography
如上例所示,给定参数“typogr”,look 命令显示以给定字符串开头的所有单词。
注意:您应该指定单词开头部分的正确拼写作为参数。
2. 使用Mean 命令查找单词的含义
mean 命令显示给定单词的含义,如下所示。如果在系统上找不到此命令,则应从操作系统分发存储库中安装它。
$ mean philosophy
Overview of noun philosophy
The noun philosophy has 3 senses (first 3 from tagged texts)
1. (12) doctrine, philosophy, philosophical system, school of thought, ism -- (a belief (or system of beliefs) accepted as authoritative by some group or school)
2. (8) philosophy -- (the rational investigation of questions about existence and knowledge and ethics)
3. (1) philosophy -- (any personal belief about how to live or how to deal with a situation; "self-indulgence was his only philosophy"; "my father's philosophy of child-rearing was to let mother do it")
Synonyms/Hypernyms (Ordered by Estimated Frequency) of noun philosophy
3 senses of philosophy
Sense 1
doctrine, philosophy, philosophical system, school of thought, ism
=> belief
Sense 2
philosophy
=> humanistic discipline, humanities, liberal arts, arts
Sense 3
philosophy
=> belief
3. 使用Dict 命令查找单词的含义
dict 命令通过与 dict.org 通信来显示单词的含义,如下所示。如果在系统上找不到此命令,则应从操作系统分发存储库中安装它。
$ dict philosophy
...
1. Literally, the love of, inducing the search after, wisdom;
in actual usage, the knowledge of phenomena as explained
by, and resolved into, causes and reasons, powers and
laws.
[1913 Webster]
...
4. 在 Vi / Vim 编辑器中查找单词的含义
vimmer 很容易创建以下快捷方式来从 Vim 编辑器中查找特定单词的含义。
map <F3> :exe ":!dict ".expand("<cword>")
当你在一个特定的词上,想知道一个词的意思时,按 F3 来查看一个词的意思。
如果您不熟悉 vim 中的 map 命令,请阅读我之前的 Vim 提示文章,其中讨论了 Vi/Vim 编辑器宏、标记和映射示例。
5. 使用Wn 命令查找单词的反义词
wn 命令可以与适当的选项一起使用来查找单词的反义词,如下所示。
$ wn search-str -antsa
- WordNet 命令
- search-str:要搜索的字符串
- -ants:反义词
(n | v | a | r) – 名词的反义词 | 动词 | 形容词| 副词
6. 如果都失败了,问 搜索引擎(如GOOGLE,BAIDU,BING)
如果您无法通过上述任何方法查找单词的含义,请在搜索引擎的搜索框中键入以下内容。
define: WORD
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)