使用 Ruby 关闭应用程序

发布于 2024-11-26 14:51:54 字数 151 浏览 1 评论 0原文

我想知道如何从 Ruby 关闭浏览器。我目前知道如何打开:

system('firefox http://www.google.com')

How do I close the same browser window?

I was wondering how to close my browser from Ruby. I currently know how a way to open by:

system('firefox http://www.google.com')

How do I close the same browser window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不喜欢何必死缠烂打 2024-12-03 14:51:54

您正在寻找 Process.spawn。用法是这样的:

pid = Process.spawn( "firefox http://www.google.com" )
Process.kill( 'QUIT', pid )

You're looking for Process.spawn. The usage would be something like this:

pid = Process.spawn( "firefox http://www.google.com" )
Process.kill( 'QUIT', pid )
千笙结 2024-12-03 14:51:54

您似乎只是想通过打开浏览器来“ping”http://www.google.com,然后然后将其关闭。

有更快、更简单的方法可以做到这一点。在您的情况下,最简单的一种(因为您已经设置了命令行)是使用 curlwget

system('wget http://www.google.com')

这将“ping”网站,并简单地丢弃输出。它会比创建 Firefox 实例快得多。

It seems that you are just trying to "ping" http://www.google.com by opening a browser and then closing it up.

There are faster, easier ways to do that. The simplest one in your case (since you already have a command line set up) would be using curl or wget:

system('wget http://www.google.com')

This will "ping" the website, and simply discard the output. It'll be much faster than creating a firefox instance.

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