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

时间:2013-11-26 13:36:06

标签: python linux subprocess os.system

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

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

即使整个设置非常“脏”,如果流程是通过pid启动的,那么有一个很好的pythonic方式来获取流程“os.system吗?

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")

3 个答案:

答案 0 :(得分:8)

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()

答案 1 :(得分:3)

分享我的解决方案,以防它可以帮助他人:

我从此页面获取信息以在后台运行fortran exe。我试图使用os.forkpty获取它的pid,但它没有给我的进程的pid。我不能使用子进程,因为我没有找到它如何让我在后台运行我的进程。

在同事的帮助下,我发现了这个:

exec_cmd = 'nohup ./FPEXE & echo $! > /tmp/pid'

os.system(exec_cmd)

如果要将pid附加到同一文件,请使用双箭头。

答案 2 :(得分:1)

您可以改为使用os.forkpty(),作为结果代码,它为您提供伪终端的pid和fd。这里有更多文档:http://docs.python.org/2/library/os.html#os.forkpty