shell脚本批量创建用户

shell脚本交互式批量创建用户:

#!/bin/sh
#Interactive bulk user creation
#num:Number of users created
#num>0
declare -i num
read -p 'Please enter the number of users to create:' num 
for i in `seq 1 $num`
do
        read -p "Please enter the username of the $i user you want to create:" username 
        useradd $username
        echo "Please give the user:$username a password!"
        passwd $username
done

shell脚本批量创建用户,用户名定义为stu(1~n),用户密码初始化为:123456,第一次登录时强制修改密码
num为你要创建的用户的数量

#!/bin/sh
#Create users in batches with an initial password of 123456, and force the password to be changed at the first login
#num:Number of users created 
#num>0
declare -i num
read -p 'Please enter the number of users to create:' num
for i in `seq 1 $num` 
do
        useradd stu$i
        echo "The user:stu$i is initial password is 123456!"
        echo  123456 |passwd  --stdin  stu$i
        chage -d 0 stu$i
done

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值