Skip to content

Instantly share code, notes, and snippets.

@astanway
Created February 19, 2013 02:50
Show Gist options
  • Save astanway/4982694 to your computer and use it in GitHub Desktop.
Save astanway/4982694 to your computer and use it in GitHub Desktop.
SHELL SLOW CLAP
#!/bin/bash
SLOW=10
while true
do sleep $SLOW
echo "clap"
SLOW=$(($SLOW - 1))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment