发布时间:2015-03-05 11:48:59
尝试用shell编写的一个小游戏《剪刀石头布》,内容如下:#!/bin/bash#by song#20150305cai=("shitou" "jiandao" "bu")read -p "enter your guess(shitou|jiandao|bu):" anwsershitou=2jiandao=1bu=0pc_cai=${cai[$((RANDOM%${#cai[*]}))]}ren=$(eval echo \$$anwser)pc=$(eval echo \$$pc_cai)#布if [[ "$ren".........【阅读全文】