[prev] 36 [next]

Basic gdb Commands

quit -- quits from gdb

help [CMD] -- on-line help (gives information about CMD command)

run ARGS -- run the program

  • ARGS are whatever you normally use, e.g.

    $ xyz  <  data
    

    is achieved by:

    (gdb) run  <  data