Last active
February 4, 2016 17:57
-
-
Save lpellegr/512385c707ccca50ed9a to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# crontab -> 04 12 * * 1-5 /home/lpellegr/scripts/lunch-time.sh | |
declare -a sentences=( | |
"Qui a faim ? on mange ?" | |
"Miam Miam ?" | |
"Manger ? http://goo.gl/SNKIEA") | |
function ask_for_lunch { | |
selected_sentence=${sentences[$RANDOM % ${#sentences[@]} ]} | |
yfiton -n slack -Pmessage="$selected_sentence" -Pchannel=general | |
} | |
ask_for_lunch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment