Skip to content

Instantly share code, notes, and snippets.

@aterreno
Last active May 10, 2019 14:39
Show Gist options
  • Save aterreno/829b1cbaaba17c7e629b5b458e2ac207 to your computer and use it in GitHub Desktop.
Save aterreno/829b1cbaaba17c7e629b5b458e2ac207 to your computer and use it in GitHub Desktop.
Scrum Master
#!/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