危机热狗

文章
6
资源
0
加入时间
2年10月21天

随机生成10个8位数[0-9]、[a-z]、[A-Z]

随机生成10个8位密码shell脚本1.首位大写字母2.中间六位大小写字母数字随机混合3.第八位[0-9] #!/bin/bashfor i in {1..10}doA=`head -c 500 /dev/urandom | tr -dc a-zA-Z | tr [a-z] [A-Z]|head -c 1`B=`head -c 500 /dev/urandom | t...