shell 生成随机数与随机字符串
一、生成随机数
1、使用系统的 $RANDOM 变量
1[root@361way ~]# echo $RANDOM
214436
2、增加整数实现范围
$RANDOM 的范围是 [0, 32767]
,如需要生成超过32767的随机数,可以用以下方法实现。
生成40000~50000的随机数
1#!/bin/bash
2function rand(){
3 min=$1
4 max=$(($2-$min+1))
5 num=$(($RANDOM+1000000000)) #增加一个10位的数再求余
6 echo $(($num%$max+$min))
7}
8rnd=$(rand 40000 50000)
9echo $rnd
10exit 0
3、使用date +%s%N
1#!/bin/bash
2function rand(){
3 min=$1
4 max=$(($2-$min+1))
5 num=$(date +%s%N)
6 echo $(($num%$max+$min))
7}
8rnd=$(rand 1 50)
9echo $rnd
10exit 0
上面的代码执行后会生成1~50的随机数。
4、使用/dev/random 和 /dev/urandom
/dev/random 存储着系统当前运行环境的实时数据,是阻塞的随机数发生器,读取有时需要等待。/dev/urandom 非阻塞随机数发生器,读取操作不会产生阻塞。例:使用/dev/urandom生成100~500的随机数,使用urandom避免阻塞。
1#!/bin/bash
2function rand(){
3 min=$1
4 max=$(($2-$min+1))
5 num=$(cat /dev/urandom | head -n 10 | cksum | awk -F ' ' '{print $1}')
6 echo $(($num%$max+$min))
7}
8rnd=$(rand 100 500)
9echo $rnd
10exit 0
5、使用date指令生成随机数
获得时间戳,当前到:1970-01-01 00:00:00 相隔的秒数。如果用它做随机数,相同一秒的数据是一样的。在做循环处理,多线程里面基本不能满足要求了。
1[root@361way ~]# date +%s
21436453424
获得当前时间的纳秒数据,精确到亿分之一秒。这个相当精确了,就算在多cpu,大量循环里面,同一秒里面,也很难出现相同结果,不过不同时间里面还会有大量重复碰撞
1[root@361way ~]# date +%N
2825151407
完美了,加入了时间戳,又加上了纳秒,不过感觉位数太长了些
1[root@361way ~]# date +%s%N
21436453442886993284
二、随机字符串的生成
1、使用linux uuid
uuid 全称是通用唯一识别码,格式包含32个16进制数字,以’-‘连接号分为5段。形式为8-4-4-4-12 的32个字符。
1[root@361way ~]# cat /proc/sys/kernel/random/uuid
2cd4b704d-9937-453b-9a69-12294eba45cc
使用linux uuid 生成100~500随机数:
1#!/bin/bash
2function rand(){
3 min=$1
4 max=$(($2-$min+1))
5 num=$(cat /proc/sys/kernel/random/uuid | cksum | awk -F ' ' '{print $1}')
6 echo $(($num%$max+$min))
7}
8rnd=$(rand 100 500)
9echo $rnd
10exit 0
2、date与urandom生成随机串
1#使用date 生成随机字符串
2date +%s%N | md5sum | head -c 10
3#使用 /dev/urandom 生成随机字符串
4cat /dev/urandom | head -n 10 | md5sum | head -c 10
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/linux-shell-random/4594.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.