Last active
November 16, 2018 00:27
-
-
Save AV4TAr/6c7bb30d00ea47f72ff2bd10f341dba8 to your computer and use it in GitHub Desktop.
Mac Dictation
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 | |
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