The command tbreak
(tb
for short) is exactly like break
except that the breakpoint it sets is deleted when it’s hit.
The command start
runs the debugged program until the start of the main procedure. It’s equivalent to tbreak main
followed by run
.
Little things for sure, but they save typing.