commands.sh

wasm-objdump

all

Display information from WebAssembly binaries.

More info →

Options (4)

-h, --headersboolean

Display the section headers of a given binary

Example: wasm-objdump {{[-h|--headers]}} {{file.wasm}}
-d, --disassembleboolean

Display the entire disassembled output of a given binary

Example: wasm-objdump {{[-d|--disassemble]}} {{file.wasm}}
-x, --detailsboolean

Display the details of each section

Example: wasm-objdump {{[-x|--details]}} {{file.wasm}}
-j, --sectionboolean

Display the details of a given section

Example: wasm-objdump {{[-j|--section]}} '{{import}}' {{[-x|--details]}} {{file.wasm}}

Examples (4)

Display the section headers of a given binary

wasm-objdump [-h|--headers] file.wasm

Display the entire disassembled output of a given binary

wasm-objdump [-d|--disassemble] file.wasm

Display the details of each section

wasm-objdump [-x|--details] file.wasm

Display the details of a given section

wasm-objdump [-j|--section] 'import' [-x|--details] file.wasm
made by @shridhargupta | data from tldr-pages