Skip to content

Instantly share code, notes, and snippets.

@kellyebler
Created August 8, 2019 22:03
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 kellyebler/721e357780daa410ec46f8d5177d6055 to your computer and use it in GitHub Desktop.
Save kellyebler/721e357780daa410ec46f8d5177d6055 to your computer and use it in GitHub Desktop.
shame your users
#!/bin/bash
COUNTER=0
while [ $COUNTER -gt -1 ];
do
echo "Youve been shaming for $COUNTER seconds"
say shame
sleep 1
let COUNTER=COUNTER+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment