生成随机10位长度密码

[root@centos7 ~]#openssl rand -base64 9 |head -c10
ckMTxxDiQ2[root@centos7 ~]#tr -dc '[:alnum:]' < /dev/urandom |head -c10
CpMYwi0jsV[root@centos7 ~]#

你可能感兴趣的:(Linux运维,linux,运维)