I use GDB very often to debug my C-program and I use the print options like :
- set print pretty on
- set print array-index on
But at moment I need to set these print options everytime I open a new GDB session. I am looking for a way such that I can set these print options once forever so that print options are set in every new GDB session.
thanks