命令行版谷歌翻译:Translate Shell安装与简单使用

公冶高义
2023-12-01

软件介绍

Translate Shell[1] (之前叫做 Google Translate CLI) 是一款借助谷歌翻译(默认)、必应翻译、Yandex.Translate 以及 Apertium 来翻译的命令行翻译器。它让你可以在终端访问这些翻译引擎。 Translate Shell 在大多数 Linux 发行版中都能使用。

有三种方法安装 Translate Shell。

  • 直接下载可执行文件
  • 手动安装
  • 通过包管理器安装
直接下载可执行文件
wget git.io/trans
chmod 777 ./trans
sudo mv trans /usr/bin/
手动安装

克隆GITHUB上的Translate Shell仓库开源代码然后手工编译安装。

cd /opt/
git clone https://github.com/soimort/translate-shell
cd translate-shell
make
sudo make install
通过包管理器安装

在 Debian/Ubuntu系统上,可以使用 APT-GET 命令[2] 或者 APT 命令[3]来安装。

 sudo apt-get install translate-shell

使用Translate-Shell

简单命令:

trans [要查的词|字|句]

默认情况下,会以英文翻译查词。可以通过:

trans -R

查看translate-shell支持的语种。

如果想翻译其他语种则可通过如下简单命令:

trans [原语种]:[目标语种] [要查的词|字|句]

如果要查的句子中存在空格,则需要用引号将要查的句子括起来(单引双引都可)。

例:中文在translate-shell中代码为zh,英文为en。所以中英互译如下:

trans en:zh ‘Hello World’
trans zh:en ‘你好’

引自此原文

 类似资料: