本文主要是介绍批量创建10个系统帐号,并设置密码(密码为随机数,要求字符和数字等混合)如果存在选择删除或者跳过,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
for i in `seq -w 10`
doif id user-$1 > /dev/null;thenread -ep "user-$i用户已存在,是否删除(y/n)" ssif [ $ss = y ];thenuserdel -rf user-$ielif [ $ss = n ];thencontinueelse"输入有误"fielseuseradd user-$iif [ $i -eq 0 ];thenecho "user-$i 创建成功"passwd="user`cat /dev/random | head -1 | md5sum | head -c 5`"echo "user-$i:$passwd" chpasswdecho "user-$i--$passwd" >> user.txtelseecho "user-$i 创建失败"fifi
done
2
#/bin/bash
echo "创建成功的用户" > /root/user_name
read -ep "请输入要创建的用户:" num
for i in `seq 1 $num`
dopw=`cat /dev/urandom | head -1 | md5sum | head -c 5`id wg$i > /dev/null 2>&1if [ $? -eq 0 ];thenwhile truedoread -ep "wg$i用户已经存在,是否删掉该用用户(y/n):" selectcase $select iny|Y)userdel -rf wg$i > /dev/nullecho "wg$i成功删除"break;;n|N)break;;*)echo "输入的字符有误,请重新输入"esacdoneelseuseradd wg$i > /dev/null 2>&1if [ $? -eq 0 ];thenecho "wg$i用户创建成功"echo "wg$pw" | passwd --stdin wg$iecho "wg$i $pw " >> /root/user_namefifi
done
这篇关于批量创建10个系统帐号,并设置密码(密码为随机数,要求字符和数字等混合)如果存在选择删除或者跳过的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!