shell脚本之批量添加用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之批量添加用户相关的知识,希望对你有一定的参考价值。
1 #/bin/bash
2 for i in 1..10;do
3 if id user$i &> /dev/null;then
4 echo "This user is exists"
5 else
6 adduser user$i &>/dev/null
7 echo "user$i" | passwd --stdin user$i &>/dev/null
8 echo "This user add finash"
9 fi
10 done
以上是关于shell脚本之批量添加用户的主要内容,如果未能解决你的问题,请参考以下文章