Skip to content

Instantly share code, notes, and snippets.

@tvhung83
Created February 3, 2016 07:52
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 tvhung83/8bc0d7d47f710277c10d to your computer and use it in GitHub Desktop.
Save tvhung83/8bc0d7d47f710277c10d to your computer and use it in GitHub Desktop.
Trưa nay ăn gì
#!/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