Skip to content

Instantly share code, notes, and snippets.

@tac-yacht
Last active September 7, 2018 02:16
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 tac-yacht/873f6dbc474950f21bbd0bb67da4845a to your computer and use it in GitHub Desktop.
Save tac-yacht/873f6dbc474950f21bbd0bb67da4845a to your computer and use it in GitHub Desktop.
#!/bin/bash
# 無限ループ
while :
do
echo "おみくじ please wait"| show_txt -
num=$((RANDOM%100))
#echo "debug:"${num} | show_txt -
if [ ${num} -gt 50 ];then
echo "吉" | show_txt -
else
echo "凶"| show_txt -
fi
sleep 10
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment