使用默认安装程序选项安装 .bin 文件的最佳方法是什么?
我正在编写一个小型 shell 脚本来在 Linux 上设置我的开发环境(eclipse + java + 一堆其他东西)。其中包括安装 .bin 文件 - 这些文件启动需要用户输入的 GUI 安装程序 - 如何简单地使用默认安装程序选项并强制完成安装?
I'm working on a small shell script to set up my development environment (eclipse + java + a bunch of other stuff) on linux. Installing .bin files is among them - these launch a GUI installer where user input is necessary - how do I simply use the default installer options and force the installation to complete?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试从终端运行它们,传递“-h”、“--help”或“--usage”参数,看看它们是否处理它(并提供您可以提供的命令列表),但如果不是其设计目的不是接收任何参数,因此您无能为力。
You can try running them from a terminal passing the '-h', '--help' or '--usage' arguments to see if they handle it (and provide the listing of commands you can give it), but if it wasn't designed to receive any parameters there won't be much you can do for it.