Files
GDB-tutorial/GDB-Commands-Scripts-Workflow
2025-10-21 23:15:42 +05:30

18 lines
500 B
Plaintext

= *GDB Commands, Scripts and Workflow*
=== Breakpoints and Commands -- save time![quote,Rūmī]++++.Title
In order to display some specific information when we reach a breakpoint,
we can achieve this by `(gdb)command` command in gdb.
[source,]
----
(gdb) command 1
Type commands for breakpoint(s) 1, one per line.
End with a line saying just "end".
>print arr
>print size
>end
----
Here, the argument to "command" is the index of the breakpoint to which
these print commands will be associated to.