Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qhwa/Command-Line-Youdao-Dictionary
在命令行中查单词,使用网易有道词典
https://github.com/qhwa/Command-Line-Youdao-Dictionary
Last synced: 3 months ago
JSON representation
在命令行中查单词,使用网易有道词典
- Host: GitHub
- URL: https://github.com/qhwa/Command-Line-Youdao-Dictionary
- Owner: qhwa
- Created: 2011-09-24T10:16:09.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T00:25:56.000Z (almost 5 years ago)
- Last Synced: 2024-05-23T04:48:46.079Z (6 months ago)
- Language: Ruby
- Homepage:
- Size: 12.7 KB
- Stars: 77
- Watchers: 7
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 有道词典命令行版
这是一个ruby脚本,用来在命令行中直接查询单词含义,免去打开软件或浏览器的麻烦。
支持英译中、中译英。## 安装
```shell
# 你可能需要一个代理服务器
wget https://raw.githubusercontent.com/qhwa/Command-Line-Youdao-Dictionary/master/dict
chmod a+x dict
mv dict /usr/local/bin/dict # 如果希望全局可以使用
```可选: 发音功能需要安装 [mpg123](https://www.mpg123.de/)
(可以通过 [homebrew](https://brew.sh/), [apt-get](https://linux.die.net/man/8/apt-get) 等包管理工具安装)## 使用方法
1. 简单用法
```shell
dict <要查询的单词>
```例如:
```shell
dict cake
dict 蛋糕
```2. 发音
英文的单词和词组可以发音,支持美式/英式发音。
如需发音,需要先安装 [mpg123](https://www.mpg123.de/)```shell
dict -v give birth to
``````shell
# 英式发音 (default)
dict -v -a 1 microscope# 美式发音
dict -v -a 2 microscope
```3. 完整命令行参数
```sh
dict [options]
-v, --voice play voice
-a, --accent=acent accent of voice, can either be `1` (UK) or `2` (US)
```## demo