blob: e6c8f8f5a68122ba5c496899850bbf4c8b10b89c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
#Description: Takes in text input (or a random quote from the fortune command), translates it to chinese, translates it back to english, then displays what it made along with the original text.
#Axioms: https://wiki.debian.org/fortune
#Dependencies: https://github.com/argosopentech/argos-translate
if [ $# = 0 ]
then
china=$(fortune|argos-translate --from-lang en --to-lang zh)
else
china=$(echo "$1"|argos-translate --from-lang en --to-lang zh)
fi
echo "$china"
echo ""
echo "$china"|argos-translate --from-lang zh --to-lang en
|