我正在使用lldb
调试交互式命令行程序。该程序向用户呈现自己的提示(以类似于fdisk
的方式)。
我的问题是,我在执行程序时如何逃避或回到lldb
提示符?
这是我如何启动程序并达到我要询问的要点:
bash$ lldb progname progarg1
(lldb) target create "progname"
Current executable set to 'progname' (x86_64).
(lldb) settings set -- target.run-args "progarg1"
(lldb) process launch
Process launched Process 29286 launched: '/home/chb/progdir/progname' (x86_64)
progname>help
Commands are:
buy: use schmeckles to buy a plumbus
lube: rub with the fleeb
...
progname>
进入程序的命令循环后,如何返回lldb
发出其他lldb
相关的命令?
答案 0 :(得分:1)
敲击键盘上的Control-C会中断程序,而lldb会控制。