1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:33:50 +02:00

objdump: add -t | --syms example (#17281)

objdump: add example
This commit is contained in:
Harrison 2025-07-20 22:09:25 +08:00 committed by GitHub
parent 18e7e69493
commit 7c90966ec2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,6 +19,10 @@
`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{path/to/binary}}`
- Display the symbol table:
`objdump {{[-t|--syms]}} {{path/to/binary}}`
- Display a complete binary hex dump of all sections:
`objdump {{[-s|--full-contents]}} {{path/to/binary}}`