shownotes-w3m-rice/fzf_nova/_translate_shell
2021-05-28 00:19:05 -07:00

17 lines
311 B
Bash
Executable File

#!/usr/bin/env bash
# AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
# https://www.youtube.com/user/gotbletu
# DESC: translate text
# DEMO:
# DEPEND: translate-shell
set -o vi
while true
do
read -rep ">>> Translate Text: " INPUT
history -s "$INPUT"
trans "$INPUT"
printf "\n"
done