批量添加用户和删除用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量添加用户和删除用户相关的知识,希望对你有一定的参考价值。
批量添加用户:
思路:1.要求用户输入一个用户名,输入要创建用户的数量,以及密码
2.判断用户输入的用户名,数量,以及密码是否为非空;如果为空,直接跳过结束;只
有输入的值为非空才执行下面的语句;
3.判断输入的$num是否为数字,为数字执行下面的语名,否则不执行
#!/bin/bash #author:limingyu (Email:[email protected]) #批量添加用户 read -p "please input username: " -t 30 name read -p "please input the number of users: " -t 30 num read -p "please input the passwd of users: " -t 30 pass if [ -n "$name" -a -n "$num" -a -n "$pass" ] then y=$(echo $num |sed ‘s/[0-9]//g‘) if [ -z $y ] then for (( i=1;i<=$num;i=i+1 )) do /usr/sbin/useradd $name$i &>/dev/null echo "create $name$i success!" echo $pass |/usr/bin/passwd -- stdin $name$i &>/dev/null done fi fi
批量删除用户:
#/bin/bash for username in `cat /etc/passwd|grep ‘ljz‘|awk -F: ‘{print $1}‘` do userdel $username echo "del $username is success!" done
以上是关于批量添加用户和删除用户的主要内容,如果未能解决你的问题,请参考以下文章