Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Last active November 16, 2018 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AV4TAr/6c7bb30d00ea47f72ff2bd10f341dba8 to your computer and use it in GitHub Desktop.
Save AV4TAr/6c7bb30d00ea47f72ff2bd10f341dba8 to your computer and use it in GitHub Desktop.
Mac Dictation
#!/bin/bash
input="words.txt"
while F= read -r var
do
echo "$var"
say -v fred $var
sleep 4
done < "$input"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment