标签:style code else http The one img mamicode 效果
效果如图:
代码如下:
1 #!/bin/bash 2 #Author:GaoHongYu 3 #QQ:1061767621 4 #Time:2019-12-24 22:54:36 5 #Name:dm.sh 6 #Version:V1.0 7 8 stu=(刘一 陈二 张三 李四 王五 赵六 孙七 周八 吴九 郑十) 9 10 MAX=${#stu[*]} 11 12 while :;do 13 num=$((RANDOM%MAX)) 14 if [ $MAX -eq ${#stu_new[*]} ];then 15 echo "所有同学都已经点过名了" 16 break 17 fi 18 name=${stu[$num]} 19 if [ "${stu_new[$num]}" != "${stu[$num]}" ];then 20 stu_new[$num]=$name 21 read -p "回车继续,退出请按n:" choose 22 if [ "$choose" == ‘n‘ ];then 23 echo "退出程序" 24 break 25 fi 26 echo -e "\t\t\t\t$name" 27 else 28 continue 29 fi 30 done
标签:style code else http The one img mamicode 效果
原文地址:https://www.cnblogs.com/gaohongyu/p/12105336.html