Sie können dies mithilfe der Python-Integration in tun gdb
.
Es wäre schön, wenn man s ; bt
einen Schritt zurücktreten und dann drucken würde, aber das tut es nicht.
Sie können dasselbe erreichen, indem Sie den Python-Interpreter aufrufen.
python import gdb ; print(gdb.execute("s")) ; print(gdb.execute("bt"))
Es ist möglich, dies in einen dedizierten Befehl zu packen, der hier "cmds" genannt wird und von einer Python-Definition unterstützt wird.
Hier ist ein Beispiel, das .gdbinit
um eine Funktion zum Ausführen mehrerer Befehle erweitert wurde.
# 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
Beispielaufruf:
$ gdb
(gdb) cmds echo hi ; echo bye
hi
bye
execlp("gdb", "gdb", "-batch", "-n", "-ex", "bt full", ...
und ich kann die Paginierung nicht deaktivieren.