In gdb, I can tell the debugger to always run a set of commands when it hits a breakpoint
(gdb) b somefile.c:25
(gdb) commands
> watch -l some->expression
> continue
> end
(gdb) continue
Is there an equivalent command/system in lldb? When I try the above, I end up with
(lldb) commands
error: 'commands' is not a valid command.
error: Unrecognized command 'commands'.
and internet-searching for "gdb commands equivalent lldb" gives me a lot of great cheat sheets, but none with the commands command.