如何在文本文件中记录 dbx 会话?
我通常使用 dbx 来调试 C 代码。
我们如何记录从我开始到在 dbx 中触发 quit 命令的整个 dbx 会话?
I generally use dbx for debugging C code.
How do we log the complete session of the dbx from the point I started to the point I fired the quit command in dbx?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果dbx中没有特定的方法,可以使用脚本。
在启动 dbx 之前,运行脚本。这将启动一个新的 shell,您可以在其中运行任何命令(例如 dbx)。从 dbx 退出后,退出由脚本启动的子 shell,您将在文件“typescript”中找到完整的 dbx 会话。
If there isn't a specific way in dbx, you can use script.
Before starting dbx, run script. This starts a new shell where you can run any command (such as dbx). After you have quit from dbx, quit the sub-shell started by script and you'll find your full dbx session in the file 'typescript'.