批量创建Linux用户账号
本shell脚本用于批量创建Linux用户账号并加入群组 使用环境:在windows中使用Excel编辑好账号、群组,使用Xmanager或其它方式上传至Linux系统,然后使用sh运行该脚本即可. 1. 使用excel准备账号群组文件,A栏为账号名,B栏为其加入的群组名:
2. 将其另存为:adduser.txt(默认使用ANSI编码方式)
4. 预先创建相应群组: [root@LKCentOS ~]#groupadd group100 [root@LKCentOS ~]#groupadd group200 [root@LKCentOS ~]#groupadd group300 [root@LKCentOS ~]#groupadd group400 (以上也可用script完成) 5. 制作以下 #!/bin/bash #Program: # This program shows how to create accounts using a text file which include a lot of accounts and groups,etc. #History: #2011/11/20 LuoKun V1.0 #If you have any questions or suggestions,please write to luokun0810@hotmail.com. PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH # grep -v ''^ |
|||||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |