shell生成随机数的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell生成随机数的方法相关的知识,希望对你有一定的参考价值。


方法1:使用/dev/urandom

[[email protected] shell]# tr -dc "0-9" < /dev/urandom | head -c 10        #生成10个数字
5798734885[[email protected] shell]# 
[[email protected] shell]# 
[[email protected] shell]# tr -dc "a-z" < /dev/urandom | head -c 10        #生成10个小写字符
xxcudpzyfu[[email protected] shell]# 
[[email protected] shell]# tr -dc "A-Z" < /dev/urandom | head -c 10        #生成10个大写字符
XFDBEFCDKV[[email protected] shell]# 
[[email protected] shell]# tr -dc "0-9,a-z" < /dev/urandom | head -c 10  #生成数字和字符的组合
ryjhjhnpyd[[email protected] shell]#


方法二:使用date +%s


  1. 随机生成一串数字

[email protected]:/home/dell/shell# date +%s |cksum |cut -d " " -f 1 
1934689009

扩展:随机生成10以内的数字

[email protected]:/home/dell/shell# echo "`date +%s |cksum |cut -d " " -f 1`%100" |bc
81

2.随机生成一串小写字母

[email protected]:/home/dell/shell# date +%s| md5sum | tr -dc "a-z" |head -c 10
[email protected]:/home/dell/shell#


3.随机生成数字与字母的组合

[email protected]:/home/dell/shell# date +%s| md5sum | head -c 10
67e


方法三:使用openssl rand

[email protected]:/home/dell/shell# openssl rand -base64  40
C6S7WofBX3S4imkZb9mHDkcYWZyreae0lAUqPLPcaeX+KF8HaKXOrw==


本文出自 “hello world” 博客,请务必保留此出处http://237085.blog.51cto.com/227085/1959461

以上是关于shell生成随机数的方法的主要内容,如果未能解决你的问题,请参考以下文章

shell生成随机数方法总计

shell系列生成随机数的方法

shell系列生成随机数的方法

shell生成一个随机密码

shell怎么产生一个随机数,要求是0到1之间的,小数位数是16位

Shell进阶脚本-生成随机数( $RANDOM )