define go if $argc == 0 help go else catch exec run break $arg0 continue end end document go Catches the target process and sets a new breakpoint on addr and continues. Usage: go addr Ex: go foo end define view if $argc == 0 help view else if $argc == 1 x $arg0 else x/$arg1x $arg0 end end end document view Display the first 4n bytes of memory from addr. Usage: show n addr Ex: show 10 *0xdeadbeef end define dump_all disassemble info registers info frame info locals end document dump_all Dumps a bunch of info about the registers, local variables, current frame and the assembly code for the current function. Usage: dump_all end