mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-15 00:12:53 +00:00
12 lines
267 B
Plaintext
12 lines
267 B
Plaintext
|
#!/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
|