shell 脚本随机抽取班级学生
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚本随机抽取班级学生相关的知识,希望对你有一定的参考价值。
#/bin/bash jw=(name1,name2,name3......name39) for i in {1..3} do a=$(date +%N) b=$(expr $a % 39) echo "学号:"$[$b + 1]" "${jw[$b]} done
以上是关于shell 脚本随机抽取班级学生的主要内容,如果未能解决你的问题,请参考以下文章