shownotes-w3m-rice/fzf_nova/_translate_eng_to_spanish

16 lines
330 B
Plaintext
Raw Normal View History

2021-05-28 07:11:33 +00:00
#!/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
2021-05-28 07:19:05 +00:00
read -rep ">>> Translate English to Spanish: " INPUT
history -s "$INPUT"
trans en:es "$INPUT"
printf "\n"
2021-05-28 07:11:33 +00:00
done