创建随机数的方法: 1~~~~ /dev/urandom 在linux中有一个设备/dev/urandom是用来产生随机数序列的。利用该设备我们可以根据在需要生成随机字符串。 比如我们要产生一个8位的
创建随机数的方法:
1~~~~
/dev/urandom
比如我们要产生一个8位的字母和数字混合的随机密码,可以这样:
[linux@test /tmp]$ cat /dev/urandom | head -1 | md5sum | head -c 8
6baf9282
2~~~~
[chengmo@Centos5 shell]$ echo $RANDOM
66918
[chengmo@centos5 shell]$ echo $RANDOM
10092
echo $((RANDOM%10))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vi passwd.sh
#创建一个 10 位的随机的密码。。。
#!/bin/bash
a=(a b c d e A B C D E F @ $ % ^ 0 1 2 3 4 5 6 7 8 9)
for ((i=0;i<10;i++));do
echo -n ${a[$RANDOM % ${#a[@]}]}
done
echo
[root@2 shell]# sh passwd.sh
BF8366c@13
vi useradd.sh
#创建5个账号,引用了随机的密码。
#!/bin/bash
i=1
while [ $i -le 5 ]
do
useradd red$i
a=`sh ./passwd.sh`
echo " red$i:$a " >> sumuserpasswd
echo "~~~~~~~~~~~" >> sumuserpasswd
echo red$i:$a|chpasswd
# echo $a | passwd ?-stdin red"$i"
let i++
done
[root@2 shell]# cat /etc/passwd|grep red
red1:x:515:515::/home/red1:/bin/bash
red2:x:516:516::/home/red2:/bin/bash
red3:x:517:517::/home/red3:/bin/bash
red4:x:518:518::/home/red4:/bin/bash
red5:x:519:519::/home/red5:/bin/bash
#查看结果
[root@2 shell]# cat sumuserpasswd
red1:$Ca7%298d2
~~~~~~~~~~~~~
red2:eEaBBB7Fb4
~~~~~~~~~~~~~
red3:%3E385cecE
~~~~~~~~~~~~~
red4:3@F%@B0584
~~~~~~~~~~~~~
red5:AdEe^6BF$F
#测试一下
[root@2 shell]# su red1
[red1@2 shell]$ su red2
口令:
[red2@2 shell]$
html表格代码
<body>
<tableborder='1'>
<tr>
<td>user</td>
<td>passwd</td>
</tr>
<tr>
<td>test1</td>
<td>123123</td>
</tr>
<tr>
<td>test2</td>
<td>aaabbb</td>
</tr>
</table>
</body>
TEMP=index.html
echo "<html><body><h3>账号和密码</h3>" > $TEMP
echo "<tableborder="1">" >> $TEMP
echo "<tr><td>username</td><td>passWord</td></tr>>> $TEMP
echo "<tr><td>$i</td><td>$a</td></tr>" >> $TEMP
echo "</table></body></html>" >>$TEMP
echo "open index.html"
--结束END--
本文标题: Shell创建用户并生成随机密码脚本分享
本文链接: https://lsjlt.com/news/18261.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0