I am using LLDB and wondering how to print the contents of a specific memory address, for example 0xb0987654.
"me" is the command you're looking for.
me
For example, this lldb command:
me -r -o /tmp/mem.txt -c512 0xb0987654
will copy 512 bytes from your memory address into a file at /tmp/mem.txt.