shell脚本批量建立用户
时间: 2023-04-26 11:06:46 浏览: 102
在linux 系统shell 批量添加用户和密码
可以使用shell脚本批量建立用户。首先需要在脚本中定义一个包含用户名的数组,然后使用循环语句遍历数组,逐个创建用户。创建用户的命令为:
```
useradd username
```
其中,username为数组中的元素。如果需要设置用户密码,可以使用以下命令:
```
echo "password" | passwd --stdin username
```
其中,password为用户密码,username为数组中的元素。最后,可以使用以下命令将用户添加到sudoers文件中,以便用户拥有sudo权限:
```
echo "username ALL=(ALL) ALL" >> /etc/sudoers
```
其中,username为数组中的元素。
阅读全文