shell生成随机数的方法

前端之家收集整理的这篇文章主要介绍了shell生成随机数的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


方法1:使用/dev/urandom

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


方法二:使用date +%s


  1. 随机生成一串数字

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

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

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

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

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


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

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


方法三:使用openssl rand

root@vmUbu:/home/dell/shell#opensslrand-base6440
C6S7WofBX3S4imkZb9mHDkcYWZyreae0lAUqPLPcaeX+KF8HaKXOrw==
原文链接:https://www.f2er.com/bash/391196.html

猜你在找的Bash相关文章