Question

Is it possible to clear the command window of gdb? I mean, is there a command in gdb that do the same (for the command windows) as the clear command in a bash terminal?

Était-ce utile?

La solution

Hit Control + L. Works for me in Linux and Mac OS X as well with recent versions of GDB.

Autres conseils

Depending on the environment you can try this key combination: Ctrl+L. That is: hold down the Control key, and type the L key.

But this may not work in all environments. You can also try the following: in gdb you can execute shell commands using shell: use this to call out to the shell to clear the terminal:

shell clear
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top