Created
March 15, 2015 16:20
-
-
Save ChlorideCull/a7e4f163c7209c1d4679 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
#http://imgur.com/gallery/fL7Saxw | |
words=("Please help me." "I am so alone." \ | |
"To arms, my brothers" "Psssst" "Hey, Listen." \ | |
"Kill all humans." "Don't ever leave me."\ | |
"The hunger is overwelming" "Look over here" \ | |
"Duck Duck Goose. You are it!") | |
#get a chance to step away | |
sleep 15 | |
while [ 1 = 1 ] | |
do | |
osascript -e "set volume 9" | |
say "${words[$[RANDOM%${#words[@]}]]}" -v whisper -r 1.5 | |
sleep 30 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment