纯linux命令批量创建用户并设置随机密码且显示用户和密码的脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了纯linux命令批量创建用户并设置随机密码且显示用户和密码的脚本相关的知识,希望对你有一定的参考价值。
##deleate
rm -f /root/user_password.txt /root/user_names.txt /root/user_list.txt
##create stu01-stu10
echo stu{01..10}|xargs -n1 >> /root/user_names.txt
##create users stu01-stu10 and build password
cat /root/user_names.txt|sed ‘s#.*#useradd &;echo $RANDOM |md5sum|cut -c 1-8 >>/root/user_password.txt;tail -1 /root/user_password.txt |passwd --stdin &#g‘|bash
###log name and password
cat /root/user_names.txt |xargs -n10 >/root/user_list.txt && cat /root/user_password.txt |xargs -n10 >>/root/user_list.txt
###show the list
cat /root/user_list.txt
以上是关于纯linux命令批量创建用户并设置随机密码且显示用户和密码的脚本的主要内容,如果未能解决你的问题,请参考以下文章