在多个pexpect进程之间进行同步

时间:2013-02-20 15:36:19

标签: pexpect

我正在编写一个需要同时ssh和telnet到设备的应用程序。 伪代码就是这样的。

p1 = pexpect.spawn("ssh to the device")
p1.send("run some command")
p1.expect("..")

p2 = pexpect.spawn("telnet to same device")
p2.send("run a command that can be run only through telnet")
p2.expect("..")

p1.send("run some other command")
p1.expect("..")

p2.send("run another command that can be run only through telnet")
p2.expect("..")`

如果你注意到,我需要两名看护孩子之间的同步 为了一个接一个地运行它们。 我搜索了很多但找不到任何信息。 请帮忙。 感谢

0 个答案:

没有答案