Skip to content

Instantly share code, notes, and snippets.

@Madoshakalaka
Created July 24, 2019 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Madoshakalaka/2746d381b71f0c7df33a76d8983e6f2b to your computer and use it in GitHub Desktop.
Save Madoshakalaka/2746d381b71f0c7df33a76d8983e6f2b to your computer and use it in GitHub Desktop.
import os
import sys
import select
import termios
import tty
import pty
from subprocess import Popen
command = 'python'
# 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment