码迷,mamicode.com
首页 > 系统相关 > 详细

个人-linux中如何批量创建和删除用户的方法(不需要shell脚本)

时间:2019-08-14 00:05:35      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:删除   如何   批量创建   amp   个人   用户   userdel   xargs   shell脚本   

创建:1.echo {01..03}|xargs -n1|sed -rn ‘s#(.*)#useradd stu\1;echo 12345|passwd --stdin stu\1#gp‘|bash

  1. echo stu{01..03}|xargs -n1|sed -rn ‘s#(.*)#useradd &;echo 123456|passwd --stdin &#gp‘|bash

删除:echo stu{01..03}|xargs -n1|sed -rn ‘s#(.*)#userdel -r &#gp‘|bash

个人-linux中如何批量创建和删除用户的方法(不需要shell脚本)

标签:删除   如何   批量创建   amp   个人   用户   userdel   xargs   shell脚本   

原文地址:https://blog.51cto.com/6727215/2429318

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!