shell脚本中的passwd命令
我正在制作一个自动创建用户的 shell 脚本,但我不知道如何在 shell 脚本中使用 passwd 命令,我应该如何将它与 shell 脚本一起使用? --stdin 选项对我不起作用
I am making a shell script that automatically create users, but I cannot think of how to use passwd command within my shell script, how should I use it with shell script? --stdin option doesn't work for me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
expect(1)
。Try
expect(1)
.passwd
的某些实现具有--stdin
标志,您可以像这样使用它:Some implementations of
passwd
have the--stdin
flag which you can use like so:在 Debian 上为我工作
Works for me on Debian