Created
March 19, 2018 21:14
-
-
Save lukas/0740855a01d7a5c1f15f779fc896ab81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare -a voices=( | |
"Agnes" | |
"Albert" | |
"Alex" | |
"Alice" | |
"Alva" | |
"Amelie" | |
"Anna" | |
"Bad" | |
"Bahh" | |
"Bells" | |
"Boing" | |
"Bruce" | |
"Bubbles" | |
"Carmit" | |
"Cellos" | |
"Damayanti" | |
"Daniel" | |
"Deranged" | |
"Diego" | |
"Ellen" | |
"Fiona" | |
"Fred" | |
"Good" | |
"Hysterical" | |
"Ioana" | |
"Joana" | |
"Junior" | |
"Kanya" | |
"Karen" | |
"Kathy" | |
"Kyoko" | |
"Laura" | |
"Lekha" | |
"Luciana" | |
"Mariska" | |
"Mei" | |
"Melina" | |
"Milena" | |
"Moira" | |
"Monica" | |
"Nora" | |
"Paulina" | |
"Pipe" | |
"Princess" | |
"Ralph" | |
"Samantha" | |
"Sara" | |
"Satu" | |
"Sin" | |
"Tarik" | |
"Tessa" | |
"Thomas" | |
"Ting" | |
"Trinoids" | |
"Veena" | |
"Vicki" | |
"Victoria" | |
"Whisper" | |
"Xander" | |
"Yelda" | |
"Yuna" | |
"Zarvox" | |
"Zosia" | |
"Zuzana" | |
) | |
declare -a words=( | |
"bug" | |
) | |
for i in "${voices[@]}" | |
do | |
rand=$[$RANDOM % ${#words[@]}] | |
echo ${words[$rand]} | |
say ${words[$rand]} -v $i -r 300 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment