Shell scripts add users in bulk

Source: Internet
Author: User

Add the appropriate user account to the Linux service and the initial password is "123456". You can specify a list file for all users, and then write a script named uadduser.sh.

[[email protected] ~]# vim/root/users.txt //Create a new list file that specifies all users
Xiaoming
Xiaoqing
Xiaofang
Xiaodong


[[email protected] ~]# vim uadduser.sh //Create a script to add users in bulk

#!/bin/bash
#2017-8-18 18:02:02
#auto by Xiaoming
userlist=$ (Cat/root/users.txt)
For UNAME in $USERLIST
Do
Useradd $UNAME
echo "123456" | passwd--stdin $UNAME
Done

[[email protected] ~]# chmod +x uadduser.sh //Give script execution permission

[[email protected] ~]# ./uadduser.sh //test script and confirm results


[Email protected] ~]# tail-4/etc/passwd
Xiaoming:x:502:502::/home/xiaoming:/bin/bash
Xiaoqing:x:503:503::/home/xiaoqing:/bin/bash
Xiaofang:x:504:504::/home/xiaofang:/bin/bash
Xiaodong:x:505:505::/home/xiaodong:/bin/bash

This article is from the "7715953" blog, please be sure to keep this source http://7725953.blog.51cto.com/7715953/1957436

Shell scripts add users in bulk

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.