记录 Telnet 会话
我需要记录 telnet 会话。我尝试将管道安装到 T 恤上,但它在带有颜色的长 ls
上破裂了。
我刚刚找到了标志 -f
(我需要其中的日志输出,因为会话没有结束),但我不确定如何应用一些控制字符(例如退格键)并删除其他人到脚本日志来获取干净的字符串。
是否还有其他具有日志记录功能的 telnet 客户端?或者其他一些解决方案(随着会话的进行连续记录,干净的普通纺织品没有 ctrl 字符以获得最终结果,以便人们回顾发生的事情,希望是一个易于安装/简单/依赖很少的解决方案)?
I need to log a telnet session. I tried piping to tee but it broke on a long ls
with colors.
I just found the flag -f
(I need the log output within as the the session goes not at the end), but I'm unsure how to apply some control characters (such as backspaces) and remove others to a script log to get a clean string.
Are there other telnet clients with logging? Or some other solution (logging continuously as session goes, clean plain textile without ctrl character for final results for people to look back at what happened, hopefully an easy to install/simple/few dependencies solution)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,这是由于 tee 中的错误无法处理大量输入造成的。
我用了 a
代替,这似乎有效。
Turns out its due to a bug in tee being unable to handle large amounts of input.
I used a
instead and that seems to work.