Created
April 28, 2018 15:16
-
-
Save Deadlyelder/cf424822457b80511820f7af95bd7fe8 to your computer and use it in GitHub Desktop.
A quick script that speaks hello in all available voices in the say command.
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
#!/bin/bash | |
while read voice | |
do | |
say -v $voice hello; echo $voice; | |
done < <(say -v '?' | awk '{print $1}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment