I wish to know if I can configure gdb such that it outputs only the result, nothing more.


In this moment the output looks like :
--------------------------------------------------------
(gdb) n

^Z^Zstarting

^Z^Zframe-begin 0 0x804bfb8

^Z^Zstopped
(gdb) 
^Z^Zframe-begin 0 0x804bfb8
--------------------------------------------------------

I wish to limit the output just to result, something like

(gdb) n
(gdb)


Is that possible?



Alin