使用subprocess.Popen执行bash

时间:2011-08-26 14:50:22

标签: python bash subprocess

我正在尝试使用python为bash会话编写一个包装器。 我做的第一件事就是尝试生成一个bash进程,然后尝试读取它的输出。像这样:

from subprocess import Popen, PIPE
bash = Popen("bash", stdin = PIPE, stdout = PIPE, stderr = PIPE)
prompt = bash.stdout.read()
bash.stdin.write("ls\n")
ls_output = bash.stdout.read()

但这不起作用。首先,在创建进程后从bash的stdout读取失败,当我尝试写入stdin时,我得到一个损坏的管道错误。 我做错了什么?

再次澄清,我对通过bash运行单个命令然后检索其输出不感兴趣,我希望在某个进程中运行bash会话,我可以通过管道进行通信。

4 个答案:

答案 0 :(得分:2)

这有效:

import subprocess
command = "ls"
p = subprocess.Popen(command, shell=True, bufsize=0, stdout=subprocess.PIPE, universal_newlines=True)
p.wait()
output = p.stdout.read()
p.stdout.close()

答案 1 :(得分:0)

read()调用正在阻塞,因此它会读取第一个命令的输出并挂起,因为还有其他数据可能会到达(即。bash仍在运行)。要执行非阻塞读取,请参阅Non-blocking read on a subprocess.PIPE in python

答案 2 :(得分:0)

为什么不直接使用cmd module / raw_input和subprocess.Popen(shell = True)?

答案 3 :(得分:0)

你可以参考我的另一个答案:https://stackoverflow.com/a/43012138/3555925,它使用伪终端并在句柄stdin / stdout中选择。

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os
import sys
import select
import termios
import tty
import pty
from subprocess import Popen

command = 'bash'
# command = 'docker run -it --rm centos /bin/bash'.split()

# save original tty setting then set it to raw mode
old_tty = termios.tcgetattr(sys.stdin)
tty.setraw(sys.stdin.fileno())

# open pseudo-terminal to interact with subprocess
master_fd, slave_fd = pty.openpty()

# use os.setsid() make it run in a new process group, or bash job control will not be enabled
p = Popen(command,
          preexec_fn=os.setsid,
          stdin=slave_fd,
          stdout=slave_fd,
          stderr=slave_fd,
          universal_newlines=True)

while p.poll() is None:
    r, w, e = select.select([sys.stdin, master_fd], [], [])
    if sys.stdin in r:
        d = os.read(sys.stdin.fileno(), 10240)
        os.write(master_fd, d)
    elif master_fd in r:
        o = os.read(master_fd, 10240)
        if o:
            os.write(sys.stdout.fileno(), o)

# restore tty settings back
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_tty)