centos 批量创建系统用户

用户名自定义:

#!/bin/bash
read -ep "要创建的用户数量" num
for ((i=0;i<=$num;i++))
do
   	 read -ep "请输入要创建的用户名" username
     passwd=`date +%s%N | md5sum | head -c 6`
     cat /etc/passwd|grep -w $username >/dev/null
     if [ $? -eq 0 ]
     then
         echo "$username用户已存在"
         echo -e "1.删除用户\n2.跳过"
         read -ep "请选择你的操作" num
         case $num in
         1)
          userdel -r $username
         ;;
         2)
          continue
         ;;
         esac
     else
          useradd $username
          echo "$username:$passwd"|chpasswd
          echo "$username,$passwd" >> /root/shell/user.txt ##将用户信息重定向到/root/shell/user.txt中。
    fi
done

用户名用默认的

#!/bin/bash
read -ep "要创建的用户数量" num
for ((i=0;i<=$num;i++))
do
     passwd=`date +%s%N | md5sum | head -c 6`
     cat /etc/passwd|grep -w user_$i >/dev/null
     if [ $? -eq 0 ]
     then
         echo "user_$i用户已存在"
         echo -e "1.删除用户\n2.跳过"
         read -ep "请选择你的操作" num
         case $num in
         1)
          userdel -r $username
         ;;
         2)
          continue
         ;;
         esac
     else
          useradd user_$i
          echo "user_$i:$passwd"|chpasswd
          echo "user_$i,$passwd" >> /root/shell/user.txt
    fi
done

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值