diff options
Diffstat (limited to 'tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish')
-rwxr-xr-x | tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish b/tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish new file mode 100755 index 0000000..fb9a4be --- /dev/null +++ b/tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish @@ -0,0 +1,11 @@ +#!/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 |