安装“.run”带有自动 yes/ok/... 选项的程序
当我在 Linux 环境中安装软件包时,我可以设置自动“是”选项,例如
yum -y install ...
或者
apt-get -y install...
是否有办法对“.run”程序执行相同的操作。例如,
sudo sh a.run -y
这样每当它询问是/否时,它会自动选择是,每当它询问确定/取消时,它都会选择确定,依此类推...
提前非常感谢!
When I install packages in linux environment I can set the automatic 'yes' option, for example
yum -y install ...
or
apt-get -y install...
Is there a way to do the same but for ".run" programs. For example as,
sudo sh a.run -y
So that whenever it asks yes/no it automatically selects yes, whenever it asks for ok/cancel it selects ok, and so on...
thanks a lot in advance!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,.run 命令只是一组将由 sh 运行的命令。特定的 .run 文件可能采用 -y 选项,但通常您不能指望它。如果您需要自动化某些操作,请考虑使用 Expect。
No, a .run command is simply a set of commands that are going to be run by sh. A particular .run file might take a -y option but in general you can't count on it. If you need to automate some stuff, consider using Expect.