Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-23 00:19:06 +00:00
parent 8ba6f7fc9e
commit 94c28849c9
382 changed files with 1183 additions and 1056 deletions

View File

@@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git
- Display the section headers of a given binary:
`wasm-objdump -h {{file.wasm}}`
`wasm-objdump {{[-h|--headers]}} {{file.wasm}}`
- Display the entire disassembled output of a given binary:
`wasm-objdump -d {{file.wasm}}`
`wasm-objdump {{[-d|--disassemble]}} {{file.wasm}}`
- Display the details of each section:
`wasm-objdump --details {{file.wasm}}`
`wasm-objdump {{[-x|--details]}} {{file.wasm}}`
- Display the details of a given section:
`wasm-objdump --section '{{import}}' --details {{file.wasm}}`
`wasm-objdump {{[-j|--section]}} '{{import}}' {{[-x|--details]}} {{file.wasm}}`