Skip to content

Instantly share code, notes, and snippets.

@EugeneAshizawa
Created July 4, 2012 00:23
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 EugeneAshizawa/3044336 to your computer and use it in GitHub Desktop.
Save EugeneAshizawa/3044336 to your computer and use it in GitHub Desktop.
Simple Speech Program
#!/bin/bash
echo ""
echo "LET ME SPEAK!"
echo "Write some script below and hit Enter."
echo ""
while read script
do
say "$script"
if [ -z "$script" ]
then
exit
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment