使用Python的子进程在新的Xterm窗口中显示输出

时间:2011-04-05 21:24:38

标签: python pipe subprocess

我试图在同一个Python脚本的两个终端中输出不同的信息(很像this fellow)。我的研究似乎指向的方法是使用subprocess.Popen打开一个新的xterm窗口并运行cat以在窗口中显示终端的stdin。然后我会将必要的信息写入子进程的stdin,如下所示:

from subprocess import Popen, PIPE

terminal = Popen(['xterm', '-e', 'cat'], stdin=PIPE) #Or cat > /dev/null
terminal.stdin.write("Information".encode())

然后字符串“Information”将显示在新的xterm中。然而,这种情况并非如此。 xterm不显示任何内容,stdin.write方法只返回字符串的长度,然后继续。我不确定是否存在对子流程和管道工作方式的误解,但如果有人能帮助我,我将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:2)

这不起作用,因为您将内容管道传递给xterm本身而不是xterm内运行的程序。考虑使用命名管道:

import os
from subprocess import Popen, PIPE
import time

PIPE_PATH = "/tmp/my_pipe"

if not os.path.exists(PIPE_PATH):
    os.mkfifo(PIPE_PATH)

Popen(['xterm', '-e', 'tail -f %s' % PIPE_PATH])


for _ in range(5):
    with open(PIPE_PATH, "w") as p:
        p.write("Hello world!\n")
        time.sleep(1)