如何从 python 应用程序获取 Mac 上正在运行的进程的完整列表

发布于 2024-08-09 10:42:54 字数 424 浏览 2 评论 0原文

我想获取 Mac 上正在运行的进程列表,类似于从“ps -ea”中获取的内容,

我已经尝试过os.popen('ps -ea') 但这仅列出了一个进程的一小部分,可能是所属 shell 所拥有的进程。

我尝试过的其他选项

'sh -c /bin/ps -ea'
'bash -c /bin/ps -ea'
'csh -c /bin/ps -ea'
Running as root via sudo
data = subprocess.Popen(['ps','ea'], stdout=subprocess.PIPE).stdout.readlines()

有哪些其他方法可以为我提供完整的流程信息列表?

这是一个 wx python 应用程序,用于监视特定进程并发现它们何时终止。

I want to get the list of running processes on the Mac, similar to what you get from 'ps -ea'

I have tried os.popen('ps -ea') but this only lists a small subset of the processes, presumably those owned by the owning shell.

Other options I have tried are

'sh -c /bin/ps -ea'
'bash -c /bin/ps -ea'
'csh -c /bin/ps -ea'
Running as root via sudo
data = subprocess.Popen(['ps','ea'], stdout=subprocess.PIPE).stdout.readlines()

What other methods are there that might give me the full process information listing?

This is for a wx python app to monitor specific processes and spot when they die.

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

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

发布评论

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

评论(1

小梨窩很甜 2024-08-16 10:42:54

os.popen('ps aux') 看起来它为我列出了所有进程。

os.popen('ps aux') looks like it's listing all processes for me.

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