I\'m using lldb
as a standalone debugger in OSX. I\'m trying to debug a C executable, using a text file as input, by way of a redirect. The lldb
do
I'm a few years late but, should someone else find their way here the following will be helpful: This website contains a multitude of ways in which lldb can do all of the same things as gdb. Of course, if you don't care about gdb you can always use the lldb commands list on its own. To answer the question more specifically, and this is repeated at the website linked above, you can do the following to run an executable that takes arguments:
lldb
(lldb) process launch --
or
(lldb) run
or just
(lldb) r