两栏,左栏 hex,右栏 ascii,一行 16 Byte。
# Display the full contents of any sections requested
objdump -s
配合 -j 可以只显示指定section的二进制
objdump --no-show-raw-insn -dC hello
-S: Do not copy relocation and symbol information from the source file. Also deletes debug sections.
-j: Copy only the indicated sections from the input file to the output file.
# Display the full contents of any sections requested
objcopy -S -j .text -O binary %s.o %s.dl