如何在终端屏幕上列出葡萄酒进程?
How to list wine processes on the terminal screen?
我知道我可以 运行 任务管理器 wine taskmgr
。但是,我希望在终端屏幕上列出与 ps
类似的 wine 进程(但不使用它),但仅适用于 Wine 环境中的进程。
如何使用 Wine 命令行工具实现这一点?
我发现这可以通过使用 winedbg
命令列出,例如
winedbg --command "info proc"
Use the info proc
winedbg command to list running processes and their Win32 pids.
参见:man winedbg
。
我知道我可以 运行 任务管理器 wine taskmgr
。但是,我希望在终端屏幕上列出与 ps
类似的 wine 进程(但不使用它),但仅适用于 Wine 环境中的进程。
如何使用 Wine 命令行工具实现这一点?
我发现这可以通过使用 winedbg
命令列出,例如
winedbg --command "info proc"
Use the
info proc
winedbg command to list running processes and their Win32 pids.
参见:man winedbg
。