While debugging with GDB, I have a really large variable that I would like to print. However, only first n lines should be printed. How can I print the first n lines with the "print" GDB command? Like a "head" command in Linux.
In particular, the variable is a structure / record.
If you have a GDB that supports Ada, and assuming that very large means an array, then use slices.
If it is a record, accessing the components will reduce output:
Otherwise, gdb, if run from on the command line shell, may pipe to more(1) on UNIX; from within Emacs, all kinds of output processing are made possible, insofar as GDB outputs text.