4 lines
178 B
Bash
4 lines
178 B
Bash
|
#!/bin/bash
|
||
|
say() { local IFS=+;/usr/bin/mplayer -ao alsa -really-quiet -noconsolecontrols "http://translate.google.com/translate_tts?ie=UTF-8&client=tw-ob&q=$*&tl=en"; }
|
||
|
say $*
|