首页 > 其他 > 详细

批量添加用户,并且第一次登陆需要输入密码

时间:2018-04-04 10:30:11      阅读:179      评论:0      收藏:0      [点我收藏+]
if [ ! -f account.txt ]; then echo "The file do not exist!" exit 1 fi username=$(cat account.txt) for username in $username do useradd $username echo $username | passwd --stdin $username chage -d 0 $username done

用户列表在account.txt文件里

批量添加用户,并且第一次登陆需要输入密码

原文:http://blog.51cto.com/652465/2094552

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!