1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 03:53:44 +02:00

objdump: add -x example (#10639)

This commit is contained in:
Johan Degn 2023-08-29 08:59:55 +02:00 committed by GitHub
parent b5db16bf55
commit eb5e1e4a40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,10 @@
`objdump -f {{binary}}`
- Display all header information:
`objdump -x {{binary}}`
- Display the disassembled output of executable sections:
`objdump -d {{binary}}`