Skip to content

Instantly share code, notes, and snippets.

@potomak
Created November 29, 2011 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save potomak/1404931 to your computer and use it in GitHub Desktop.
Save potomak/1404931 to your computer and use it in GitHub Desktop.
Listen to all the voices of your PC
#!/bin/sh
for i in $(ls -r -t /System/Library/Speech/Voices/ | awk -F'.' '{print $1}'); do
echo $i
say -v $i "Hi, I'm $i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment