gtrans

Crates.iogtrans
lib.rsgtrans
version0.2.1
created_at2020-02-12 05:23:39.236189+00
updated_at2020-03-04 14:36:38.385467+00
descriptionGoogle translation CLI tool written in Rust
homepage
repositoryhttps://github.com/ksk001100/gtrans
max_upload_size
id207534
size50,597
Keisuke Toyota (ksk001100)

documentation

README

gtrans

crates.io Build Status

Google translation CLI tool written in Rust

install

$ cargo install gtrans

In macOS you can install it with Homebrew

$ brew tap ksk001100/homebrew-gtrans
$ brew install gtrans

usage

Default translation source is ja and target is en.

The source and target can be changed by setting the environment variables GTRANS_SOURCE and GTRANS_TARGET.

The source and target can be changed by specifying the --source and --target flags. In that case, the flags take precedence over the environment variables.

$ gtrans こんにちは世界
$ export GTRANS_SOURCE=en
$ export GTRANS_TARGET=ja
$ gtrans Hello world
$ GTRANS_SOURCE=en GTRANS_TARGET=ja gtrans Hello world
$ gtrans Hello world --source en --target ja
$ gtrans Hello world -s en -t ja
$ gtrans Bonjour, monde -s fr -t en
Commit count: 0

cargo fmt