您可以通过编写伪终端从属子进程来与 shell 交互。这是它如何工作的演示。这个答案在某种程度上基于对Linux 伪终端的回答:执行从一个终端发送到另一个终端的字符串。
关键是获取 xterm 使用的伪终端(通过tty
命令)并将您的方法的输出和输入重定向到这个伪终端文件。例如ls < /dev/pts/1 > /dev/pts/1 2> /dev/pts/1
注意
- xterm 子进程被泄露(
os.system
不推荐使用,尤其是&
指令。见suprocess
模块)。
- 可能无法以编程方式找到使用了哪个 tty
- 每个命令都在一个新的 suprocess 中执行(只显示输入和输出),所以状态修改命令如
cd
没有效果,以及 xterm 的上下文(cd
在 xterm 中)
from Tkinter import *
from os import system as cmd
root = Tk()
termf = Frame(root, height=700, width=1000)
termf.pack(fill=BOTH, expand=YES)
wid = termf.winfo_id()
f=Frame(root)
Label(f,text="/dev/pts/").pack(side=LEFT)
tty_index = Entry(f, width=3)
tty_index.insert(0, "1")
tty_index.pack(side=LEFT)
Label(f,text="Command:").pack(side=LEFT)
e = Entry(f)
e.insert(0, "ls -l")
e.pack(side=LEFT,fill=X,expand=1)
def send_entry_to_terminal(*args):
"""*args needed since callback may be called from no arg (button)
or one arg (entry)
"""
command=e.get()
tty="/dev/pts/%s" % tty_index.get()
cmd("%s <%s >%s 2> %s" % (command,tty,tty,tty))
e.bind("<Return>",send_entry_to_terminal)
b = Button(f,text="Send", command=send_entry_to_terminal)
b.pack(side=LEFT)
f.pack(fill=X, expand=1)
cmd('xterm -into %d -geometry 160x50 -sb -e "tty; sh" &' % wid)
root.mainloop()