Last active
May 10, 2019 14:39
-
-
Save aterreno/829b1cbaaba17c7e629b5b458e2ac207 to your computer and use it in GitHub Desktop.
Scrum Master
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euf -o pipefail | |
scrum=("What did you work on yesterday?" "What are you going to work on today?" "Any blockers?" "Good progress" "Well done" "Any update on this?") | |
RANDOM=$$$(date +%s) | |
selected=${scrum[$RANDOM % ${#scrum[@]} ]} | |
say $selected |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment