Do we have "-x" like option in lldb, which help us to pass set of lldb command in a file. i know about python scripting in lldb but i am looking for "-x" like option in lldb which could allow me not to write a python script . Example
if i do following
#lldb
(lldb)process attach -n CoRD
(lldb)breakpoint set -n tcp_connect
(lldb)breakpoint set -n tcp_send
(lldb) c
then script "test" should contain above command in lldb context and should be passed as something like
#lldb -x test
and it should execute all command from process attach to c
is there exists something like this?