> Not in one command, but in two:
> (gdb) break f
> (gdb) continue
Right, or often people will prefer the temporary breakpoint:
(gdb) tbreak f
(gdb) cont
It's actually a good idea to define a user command for that if this
is a common situation for you.
--
Joel