Hermes 自动化助手 Windows 部署,一站式安装实操(包含安装包)
2026/6/5 19:27:21
if [ $splitValue -eq 0 ] ; then echo "No point in betting when they're the same rank!" continue fi /bin/echo -n "The spread is $splitValue. Do you think the next card will " /bin/echo -n "be between them? (y/n/q) " read answer if [ "$answer" = "q" ] ; then echo "" echo "You played $games games and won $won times." exit 0 fi echo "I picked: $cardname3" # Is it between the values? Let's test. Remember, equal rank = lose. if [ $rank3 -gt $rank1 -a $rank3 -lt $rank2 ] ; then # Winner! winner=1 else winner=0 fi if [ $winner -eq 1 -a "$answer" = "y" ] ; then echo "You bet that it would be between the two, and it is. WIN!" won=$(( $won + 1 )) elif [