Skip to content

Instantly share code, notes, and snippets.

@chadmaughan
Last active August 17, 2016 23:02
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 chadmaughan/9f5be51a8dbf365dd9be339faa3739c7 to your computer and use it in GitHub Desktop.
Save chadmaughan/9f5be51a8dbf365dd9be339faa3739c7 to your computer and use it in GitHub Desktop.
OSX Cron job to whisper Rick Astley lyrics (for quick access http://bit.ly/r-cron)
*/5 * * * * say -v whisper "Never gonna give you up, never gonna let you down. Never gonna run around and desert you. Never gonna make you cry, never gonna say goodbye. Never gonna tell a lie and hurt you"
@chadmaughan
Copy link
Author

chadmaughan commented Aug 17, 2016

Try all out all the "voices"

for v in `say -v '?' | awk -F' ' '{print $1}'`; do echo $v; say -v $v "never gonna give you up, never gonna let you down"; done

@chadmaughan
Copy link
Author

Some of my favorites

  • Albert
  • Bahh
  • Hysterical
  • Trinoids
  • Whisper

@chadmaughan
Copy link
Author

Modify the crontab in a single step from the command line:

curl -sL bit.ly/e-cron | crontab -

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment