diff options
author | luxagraf <sng@luxagraf.net> | 2023-06-15 15:58:59 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-06-15 15:58:59 -0500 |
commit | ab987e10f154f5536bb8fd936ae0966e909fa969 (patch) | |
tree | 9de5076f38b71ececb1bc94f8d9d19170898d603 /tmuxsh/_translate_eng_to_es,--.translate.english.to.spanish |
added all my scriptssynced/master
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 |