mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-10 19:10:36 +00:00
17 lines
311 B
Bash
Executable File
17 lines
311 B
Bash
Executable File
#!/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
|
|
read -rep ">>> Translate Text: " INPUT
|
|
history -s "$INPUT"
|
|
trans "$INPUT"
|
|
printf "\n"
|
|
done
|
|
|