Skip to content

Instantly share code, notes, and snippets.

@bennettandrews
Created April 3, 2012 22:32
Show Gist options
  • Save bennettandrews/2295999 to your computer and use it in GitHub Desktop.
Save bennettandrews/2295999 to your computer and use it in GitHub Desktop.
number station
#!/bin/bash
while [ 1 ]
do
cat /dev/urandom | base64 | tr -dc "[:alnum:]" | head -c$(($RANDOM % 100)) | say -v "Whisper"
sleep $(($RANDOM % 100))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment