shell基礎練習

shell基礎練習 一、編寫shell腳本,實現1-100的猜數字遊戲。 #!/bin/bash ##RANDOM隨機函數,100取餘就能夠得到1-100的隨機數字 n=$[$RANDOM%100] while : do read -p "請輸入一個1-100間的整數:" n1 n2=`echo $n1|sed 's/[0-9]//g'` if [ ! -z $n2 ] then echo
相關文章
相關標籤/搜索