Created
February 3, 2016 07:52
-
-
Save tvhung83/8bc0d7d47f710277c10d to your computer and use it in GitHub Desktop.
Trưa nay ăn gì
This file contains hidden or 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/sh | |
DISHES=( | |
'Phở' | |
'Huế' | |
'Siêu thị' | |
'Bún chả' | |
'Bò Nia' | |
) | |
rand=$[ $RANDOM % ${#DISHES[@]} ] | |
MESSAGE="Trưa nay: "${DISHES[$rand]} | |
echo $MESSAGE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment