安装“.run”带有自动 yes/ok/... 选项的程序

发布于 2024-11-15 03:22:53 字数 295 浏览 5 评论 0原文

当我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

调妓 2024-11-22 03:22:53

不,.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文