Use command source .
(lldb) command source ~/.lldbinit
If you download a Python file,
(lldb) command script import ~/lldb/bbt.py
although note that you cannot re-import a function that you already imported in the lldb debugging session; when updating a python script you need to exit and restart the debugger to try new versions.
source share