shownotes-w3m-rice/fzf_speed/_translate_eng_to_es,--.translate.english.to.spanish

12 lines
267 B
Plaintext
Raw Normal View History

2021-07-03 23:23:15 +00:00
#!/usr/bin/env bash
# AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
# https://www.youtube.com/user/gotbletu
set -o vi
while true
do
read -rep ">>> Translate English to Spanish: " INPUT
history -s "$INPUT"
trans en:es "$INPUT"
printf "\n"
done