[root@localhost ~]# yum -y install pwgen
[root@localhost ~]# pwgen -ncCyB1 8 1
kei%b3Xa
[root@localhost ~]# pwgen -ncCyB1 8 2
Ahs3eib'
Yo>u7eun
[root@localhost ~]#

 

[root@localhost ~]# echo $RANDOM|md5sum |cut -c 1-8
d31a2fcf
# 生成数字
[root@localhost ~]# echo $RANDOM |cksum |cut -c 1-8
32022099

 

[root@localhost ~]# openssl rand -base64 4
nMjQSQ==
# 生成数字
[root@localhost ~]# openssl rand -base64 4 |cksum |cut -c 1-8
25050760

 

[root@localhost ~]# cat /proc/sys/kernel/random/uuid |cut -c 1-8
0ca50358

 

[root@localhost ~]# date +%N |cut -c 1-8
88573308

 

相关文章:

  • 2021-08-14
  • 2022-12-23
  • 2021-09-07
  • 2021-09-05
  • 2022-01-15
  • 2021-07-31
猜你喜欢
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2022-01-18
  • 2021-07-23
相关资源
相似解决方案