Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 python 2.7 和paramiko库。在窗口上运行的客户端应用程序将 ssh 命令发送到在 linux 上运行的服务器应用程序。当我发送vi<-[0m<-[24;2H<-[K<-[24;1H<-[1m~<-[0m<-[25;2H....命令时,我得到了 我不知道这些字符是什么意思以及我如何处理它的响应 。我挣扎了几个小时,请帮助我。
<-[0m<-[24;2H<-[K<-[24;1H<-[1m~<-[0m<-[25;2H....
回顾我这周的 SO 活动,看到了这个为代表嫖娼的机会:
这些看起来像 ANSI/VT100 终端控制代码,这表明认为它连接到终端的东西正在发送它们,但它们被不知道如何处理它们的东西接收。
现在您可以通过 Google 搜索“VT100 控制代码”并了解您想要的内容。