Skip to content

Instantly share code, notes, and snippets.

@TopherGopher
Created November 26, 2016 23:43
Show Gist options
  • Save TopherGopher/25f18ce684e879adc06e536974734339 to your computer and use it in GitHub Desktop.
Save TopherGopher/25f18ce684e879adc06e536974734339 to your computer and use it in GitHub Desktop.
Runs through the available voices in OSX and says a sample phrase in each
for X in $(say -v ? | cut -d' ' -f1); do echo $X && say -v "$X" "Welcome Professor"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment