Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个执行以下任一脚本的脚本:
./ide.py # or python ./ide.py
之后我使用pstree -p | grep ide.py检查,但我只找到了一个 Python 进程。如果我有许多 Python 脚本正在运行,我该如何区分它们?
pstree -p | grep ide.py
使用-a开关:
-a
pstree -p -a
显示进程命令行参数。
您需要使用“-a”开关运行 pstree 命令以显示命令行参数。原因如下:
所有 python 脚本都通过 python 解释器运行......即使你直接运行它们(即 ./ide.py)。