码迷,mamicode.com
首页 > 系统相关 > 详细

shell while循环体猜数字

时间:2016-12-13 06:33:44      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:while循环   div   desktop   shell   log   top   roo   ash   rom   

#! /bin/bash
echo "guest the num from 1 to 10"
read num
while [ $num != 5 ]
do
if [ $num -lt 5 ]
then
echo "Too small,try agin"
read num
elif [ $num -gt 5 ]
then
echo "Too large,try agin"
read num
fi
echo "bingo"
done

  

[root@lenny Desktop]# ./guest.sh 
guest the num from 1 to 10
4
Too small,try agin
5
bingo

  

shell while循环体猜数字

标签:while循环   div   desktop   shell   log   top   roo   ash   rom   

原文地址:http://www.cnblogs.com/leonarcohen/p/6166307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!