如何使用python发送ctrl a+c?
我需要找出如何使用 python 发送 ctrl a+c 来使用 GNU Screen 创建一个新屏幕,我迷路了,我没有找到任何可以使其工作的代码。我需要使用 python 控制 GNU Screen。
I need to find out how to send ctrl a+c
using python to make a new screen using GNU Screen I'm lost i have not found any code that will get this working. I need to control GNU Screen using python.
More info
http://lifehacker.com/5652409/how-to-run-multiple-applications-in-a-single-terminal-window
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 pexpext 模块中的 sendcontrol() 。
文档有很多示例。
try with sendcontrol() from pexpext module.
The documentation has many examples.