python – 如何通过os.system确定进程的pid

前端之家收集整理的这篇文章主要介绍了python – 如何通过os.system确定进程的pid前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想用程序启动几个子进程,即模块foo.py启动bar.py的几个实例.

由于我有时必须手动终止进程,因此我需要进程id来执行kill命令.

即使整个设置非常“脏”,如果通过os.system启动进程,是否有一个很好的pythonic方法获取进程’pid?

foo.py:

import os
import time
os.system("python bar.py \"{0}\ &".format(str(argument)))
time.sleep(3)
pid = ???
os.system("kill -9 {0}".format(pid))

bar.py:

import time
print("bla")
time.sleep(10) % within this time,the process should be killed
print("blubb")
最佳答案
os.system返回退出代码.它不提供子进程的pid.

使用subprocess模块.

import subprocess
import time
argument = '...'
proc = subprocess.Popen(['python','bar.py',argument],shell=True)
time.sleep(3) # <-- There's no time.wait,but time.sleep.
pid = proc.pid # <--- access `pid` attribute to get the pid of the child process.

要终止进程,可以使用terminate方法kill.(无需使用外部kill程序)

proc.terminate()
原文链接:https://www.f2er.com/linux/440314.html

猜你在找的Linux相关文章