howdy. i'd like to have gdb immediately run the executable, as if i'd typed "run". (motivation: i dislike typing "run")
one way is to can pipe the command to gdb like this: echo run | gdb myApp but the problem with this approach is that you lose interactivity with gdb. eg, if a breakpoint triggers or myApp crashes, gdb quits. this method is discussed here: http://stackoverflow.com/questions/322110/invoke-gdb-to-automatically-pass-arguments-to-the-program-being-debugged
looking at the options in --help i don't see a way to do this, but perhaps i'm missing something.
tia, orion