I know I can use jump to set the program counter to a specific line and so I can skip one or more lines (or execute some lines again). Can I easily just skip th
jump
I have the following in my .gdbinit config file:
.gdbinit
define skip tbreak +1 jump +1 end
So just type skip in gdb to skip a line.
skip