Options (6)
-f, --file-headersbooleanDisplay the file header information
Example:
objdump {{[-f|--file-headers]}} {{path/to/binary}}-x, --all-headersbooleanDisplay all header information
Example:
objdump {{[-x|--all-headers]}} {{path/to/binary}}-d, --disassemblebooleanDisplay the disassembled output of executable sections
Example:
objdump {{[-d|--disassemble]}} {{path/to/binary}}-M, --disassembler-optionsbooleanDisplay the disassembled executable sections in Intel syntax
Example:
objdump {{[-d|--disassemble]}} {{path/to/binary}} {{[-M|--disassembler-options]}} intel-t, --symsbooleanDisplay the symbol [t]able
Example:
objdump {{[-t|--syms]}} {{path/to/binary}}-s, --full-contentsbooleanDisplay a complete binary hex dump of all sections
Example:
objdump {{[-s|--full-contents]}} {{path/to/binary}}Examples (7)
Display the file header information
objdump [-f|--file-headers] path/to/binaryDisplay all header information
objdump [-x|--all-headers] path/to/binaryDisplay the disassembled output of executable sections
objdump [-d|--disassemble] path/to/binaryDisplay the disassembled executable sections in Intel syntax
objdump [-d|--disassemble] path/to/binary [-M|--disassembler-options] intelDisplay the disassembled executable sections with jump visualizations and syntax highlighting
objdump [-d|--disassemble] path/to/binary --visualize-jumps=color|extended-color --disassembler-color=color|extended-colorDisplay the symbol [t]able
objdump [-t|--syms] path/to/binaryDisplay a complete binary hex dump of all sections
objdump [-s|--full-contents] path/to/binarymade by @shridhargupta | data from tldr-pages