重定向流以提示密码
我有一个脚本提示输入密码以完成特定任务。我想跳过每次输入密码的过程。为此,我这样想:
./myscript < my_file_containing_pass
但不幸的是,这行不通。
有什么想法吗?
I have a script that prompt for a password to achieve a specific task. I wanna skip entering password each time. for this, i thought about sth like that:
./myscript < my_file_containing_pass
but unfortunatly, this doesn't work.
any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保密码文件末尾有换行符。
如果这不起作用,请设置一个环境变量,并更改您的脚本,以便它找到此环境。变量,它从具有变量值的文件中读取密码,否则它提示用户。
Ensure you have a newline in the end of your password file.
If that didn't work, set an environment variable, and alter your script so that if it finds this env. variable, it reads the password from the file with the variable value, otherwise it prompts the user.