如何在centos中的bash脚本中创建自动用户名和密码

如何在centos中的bash脚本中创建自动用户名和密码

大家好,我想知道是否有人可以帮助我在 centos 中使用 bash 脚本创建 4 个组,并向每个组添加 8 个带密码的用户,考虑到密码应该是自动的,我的意思是 bash 脚本需要在没有任何人为干预的情况下执行。

答案1

您可以使用这样的脚本

#!/bin/bash groups=(gr1 gr2 gr3 gr4) users=(us1 us2 us3 us4) for i in ${groups[@]}; do groupadd $i done for i in ${users[@]}; do pw=head /dev/urandom | tr -dc A-Za-z0-9 | head -c 15 ; echo '' echo $i' '$pw useradd $i usermod --password $(openssl passwd -1 $pw) $i for j in ${groups[@]}; do usermod -a -G $j $i done done

相关内容