帮忙看一下:一个只有几行的创建用户的脚本

Now I use :
echo UserPasswd | passwd --stdin UserID
in stript to set the password.
May be this method is stupid.
:rolleyes:

Now I know you are a intelligent MM,
but I can not tell you whether I am a girl or not.      
你的这种方法比较 cool,我也学了一招      
承蒙夸奖,开心。:w      
chpasswd 可以批量修改用户的口令:

$ chpasswd << "END"
> user1:passwd1
> user2:passwd2
> user3:passwd3
END

或者

$ echo $'user1:passwd1\nuser2:passwd2\nuser3:passwd3' | chpasswd      
弱问一下
如何创建一个随机的用户密码?      
产生一个随机的 8 字符口令:

$ passwd=$(hexdump -e '"%02x"' -n 4 /dev/random)      
用 /dev/urandom 也可