用shell脚本批量创建50个用户并设置密码,批量删除用户

批量创建50个用户并设置密码,批量删除用户。
要求用户名为stu1—stu50 密码与用户名相同。


#vim /root/adduser.sh

#!/bin/bash
#通过脚本批量创建用户
PREFIX=“stu”
i=1
while [ $i -le 50]
do
useradd ${PREFIX} $i
echo " $ {PREFIX} $ i " | passwd --stdin $ {PREFIX} $ i &> /dev/null
或 userdel -r $ {PREFIX} $i &> /dev/null :批量删除用户
let i++
done

你可能感兴趣的:(shell)