Bạn có thể làm điều này bằng cách sử dụng tích hợp python trong gdb
.
Sẽ thật tuyệt nếu s ; bt
bước và sau đó in một backtrace, nhưng nó không.
Bạn có thể thực hiện điều tương tự bằng cách gọi vào trình thông dịch Python.
python import gdb ; print(gdb.execute("s")) ; print(gdb.execute("bt"))
Có thể gói nó thành một lệnh chuyên dụng, ở đây được gọi là "cmds", được hỗ trợ bởi một định nghĩa python.
Đây là một ví dụ được .gdbinit
mở rộng với một chức năng để chạy nhiều lệnh.
# 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
ví dụ gọi:
$ gdb
(gdb) cmds echo hi ; echo bye
hi
bye
execlp("gdb", "gdb", "-batch", "-n", "-ex", "bt full", ...
và tôi không thể tắt phân trang.