Last active
January 1, 2016 13:09
-
-
Save kuoe0/8149531 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
#coding=utf-8 | |
import pty | |
import os | |
import select | |
def mkpty(): | |
# | |
master1, slave = pty.openpty() | |
slaveName1 = os.ttyname(slave) | |
master2, slave = pty.openpty() | |
slaveName2 = os.ttyname(slave) | |
print '\nslave device names: ', slaveName1, slaveName2 | |
return master1, master2 | |
if __name__ == "__main__": | |
master1, master2 = mkpty() | |
while True: | |
rl, wl, el = select.select([master1,master2], [], [], 1) | |
for master in rl: | |
data = os.read(master, 128) | |
print "read %d data." % len(data) | |
if master==master1: | |
os.write(master2, data) | |
else: | |
os.write(master1, data) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment