Skip to content

Instantly share code, notes, and snippets.

@Deadlyelder
Created April 28, 2018 15:16
Show Gist options
  • Save Deadlyelder/cf424822457b80511820f7af95bd7fe8 to your computer and use it in GitHub Desktop.
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.
#!/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