I'm currently debugging some software using lldb, and its been a weeks long project. I've been adding aliases for commonly used commands, and even tweaked an example python script to help with speeding up my work.
The issue I am having - sometimes I type a command, and then later on I need to reference that (a memory address I need is there, for example). In bash I'd simply do:
history | grep <command>
!<history number>
That obviously does not work in lldb. I'd like to add a script where I add a python command 'history' but nowhere that I look can I find a way to access the lldb command history. Is that possible?