用于检查 Mac OS X 应用程序当前是否正在运行的 Ruby 脚本

发布于 2024-12-19 17:11:45 字数 299 浏览 0 评论 0原文

在 ruby​​ 脚本中,检查 Mac OS X 应用程序当前是否正在运行的最佳方法是什么?我正在寻找与此AppleScript等效的东西:(

if appIsRunning("iChat") then
  ...
end if

on appIsRunning(appName)
  tell application "System Events" to (name of processes) contains appName
end appIsRunning

但我不想使用AppleScript,因为它有点慢)

From within a ruby script, what is the best way to check if a Mac OS X app is currently running or not? I'm looking for something equivalent to this AppleScript:

if appIsRunning("iChat") then
  ...
end if

on appIsRunning(appName)
  tell application "System Events" to (name of processes) contains appName
end appIsRunning

(but I don't want to use AppleScript, because it's a tad slow)

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

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

发布评论

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

评论(1

苦妄 2024-12-26 17:11:45

可能有更好的答案,但一种简单的方法是执行此操作:

def app_is_running?(app_name)
  `ps aux` =~ /#{app_name}/ ? true : false
end

在我的系统上执行此操作(OSX Lion,Ruby 1.9.2-p290):

 app_is_running?("iChat")
 => true 

There are probably better answers, but one simple way is to do this:

def app_is_running?(app_name)
  `ps aux` =~ /#{app_name}/ ? true : false
end

Doing this on my system (OSX Lion, Ruby 1.9.2-p290):

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