我试图在gdb中一次执行两个命令:
finish; next
我尝试使用';' 分隔命令,但是gdb不允许我同时执行这两个命令。
是否可以在gdb中执行多个命令,类似于以';'分隔的bash命令 定界符?
我试图在gdb中一次执行两个命令:
finish; next
我尝试使用';' 分隔命令,但是gdb不允许我同时执行这两个命令。
是否可以在gdb中执行多个命令,类似于以';'分隔的bash命令 定界符?
Answers:
您可以使用中的python集成来做到这一点gdb
。
如果s ; bt
步进然后打印回溯,那会很好,但事实并非如此。
您可以通过调用Python解释器来完成同样的事情。
python import gdb ; print(gdb.execute("s")) ; print(gdb.execute("bt"))
可以将其包装成专用命令,在此称为“ cmds”,以python定义为后盾。
这是一个.gdbinit
扩展了具有运行多个命令功能的示例。
# multiple commands
python
from __future__ import print_function
import gdb
class Cmds(gdb.Command):
"""run multiple commands separated by ';'"""
def __init__(self):
gdb.Command.__init__(
self,
"cmds",
gdb.COMMAND_DATA,
gdb.COMPLETE_SYMBOL,
True,
)
def invoke(self, arg, from_tty):
for fragment in arg.split(';'):
# from_tty is passed in from invoke.
# These commands should be considered interactive if the command
# that invoked them is interactive.
# to_string is false. We just want to write the output of the commands, not capture it.
gdb.execute(fragment, from_tty=from_tty, to_string=False)
print()
Cmds()
end
示例调用:
$ gdb
(gdb) cmds echo hi ; echo bye
hi
bye
我遇到了另一种使用Bash HERE文档在GDB中执行多个命令的方法。
例:
cat << EOF | gdb
print "command_1"
print "..."
print "command_n"
EOF
这具有有限的值/可用性IMO,因为GDB在执行命令列表后退出。
execlp("gdb", "gdb", "-batch", "-n", "-ex", "bt full", ...
而且我无法关闭分页。