Skip to content

Instantly share code, notes, and snippets.

@diversit
Last active November 28, 2016 13:47
Show Gist options
  • Save diversit/5b84b4f7d6c67eca748897e3e176b113 to your computer and use it in GitHub Desktop.
Save diversit/5b84b4f7d6c67eca748897e3e176b113 to your computer and use it in GitHub Desktop.
#!/bin/bash
sayJoke()
{
while [ true ]
do
sleep $((RANDOM%600+15))
curl -s http://chuck.cach.in/text | say
done
}
sayJoke
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment