Created
December 7, 2013 02:41
-
-
Save davidosomething/7836645 to your computer and use it in GitHub Desktop.
creepy messages
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
## | |
# creepy messages on afk | |
# http://www.reddit.com/r/apple/comments/1s902t/type_this_into_your_terminal_to_have_funannoy/cdvcgsv | |
afk() { | |
words=('please help me' 'i am so alone' 'i am lonely' 'let me out' 'i must feed' 'it puts the lotion' 'my precious'); | |
while [ 1 = 1 ]; do | |
say "${words[$[ $[ RANDOM % ${#words[@]} ]]]}" -v Whisper -r 2 | |
sleep 100 | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment