Solaris 11 表达和间接
我正在尝试在 Solaris 11 Express 中使用 bash 间接更改用户的密码。我使用的代码是
$ passwd testuser << MARKER
> testpassword
> testpassword
> MARKER
当我运行此代码时,控制台上仍然提示我输入密码。相同的代码适用于 Ubuntu 10.04。
我尝试在 bash、sh 中运行相同的操作,得到相同的结果。我需要做一些 Solaris 特有的事情吗?
I am trying to use bash indirection in Solaris 11 express to change the password for a user. The code I am using is
$ passwd testuser << MARKER
> testpassword
> testpassword
> MARKER
When I run this, I still get prompted for a password on the console. The same code works on Ubuntu 10.04.
I tried to run the same thing in bash, sh with same results. Is there something Solaris specific that I need to be doing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 expect 像 此。
You need to use expect like this.