码迷,mamicode.com
首页 > 其他好文 > 详细

随机生成50个密码到指定文件中

时间:2018-07-31 21:43:51      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:file   md5sum   echo   dev   .sh   md5   cal   done   i++   

随机生成50个密码到指定文件中

[root@local-centos7 ~]# cat round.sh 
#!/bin/bash
count=1
while [ $count -le 50 ]
do
    round=`cat /dev/urandom | head -n 10 | md5sum | head -c 8` 
    echo $round >> /root/round.txt
    let count++
done

或者也可以这样来写
for((i=1;i<=50;i++)); do head -n 10  /dev/urandom| md5sum | head -c 8|sed -nr ‘s#.*#&\n#pg‘|tee -a file &>/dev/null ; done

随机生成50个密码到指定文件中

标签:file   md5sum   echo   dev   .sh   md5   cal   done   i++   

原文地址:http://blog.51cto.com/innocence/2152876

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!