shell 脚本(通过 cron 运行)在出现提示时输入密码
我有一个每日 cron 任务,它会自动解压 rar 文件并处理其内容,但是,内容现在受密码保护,所以我想知道是否有可靠的方法在出现提示时回显密码?密码提示来自我安装的 UNRAR 程序,在 CentOS 上运行。感谢您的帮助!
I have a daily cron task which automatically unrars a rar file and processes it's contents, however, the contents are now password protected so i'm wondering if there's a reliable way to echo the password when prompted? The password prompt comes from the UNRAR program i've installed, running on CentOS. Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
unrar
进行解压,您可以将密码定义为命令行参数:请注意,
-p
和您的密码 参数。
If you're using
unrar
for unpacking, you can define the password as command line parameter:Note that there's no space between
-p
and yourpassword
parameter.