shell生成随机数的方法

发布时间:2020-07-16 10:10:56 作者:toceph
来源:网络 阅读:1710


方法1:使用/dev/urandom

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


方法二:使用date +%s


  1. 随机生成一串数字

root@vmUbu:/home/dell/shell# date +%s |cksum |cut -d " " -f 1 
1934689009

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

root@vmUbu:/home/dell/shell# echo "`date +%s |cksum |cut -d " " -f 1`%100" |bc
81

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

root@vmUbu:/home/dell/shell# date +%s| md5sum | tr -dc "a-z" |head -c 10
cdacabaebroot@vmUbu:/home/dell/shell#


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

root@vmUbu:/home/dell/shell# date +%s| md5sum | head -c 10
67e


方法三:使用openssl rand

root@vmUbu:/home/dell/shell# openssl rand -base64  40
C6S7WofBX3S4imkZb9mHDkcYWZyreae0lAUqPLPcaeX+KF8HaKXOrw==


推荐阅读:
  1. shell生成100个6位随机数
  2. shell怎样生成随机数

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

shell he hell

上一篇:什么是php反序列化

下一篇:type=xhr的500错误

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》