我需要具有在Linux(Fedora 10)上创建用户帐户并能够通过bash脚本自动分配密码的能力(或者,如果需要的话)。
通过Bash创建用户很容易,例如:
[whoever@server ]# /usr/sbin/useradd newuser
是否可以在Bash中分配一个密码,其功能与此类似,但会自动进行:
[whoever@server ]# passwd newuser
Changing password for user testpass.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[whoever@server ]#
expect
脚本解决。