objdump: update page; add Spanish translation (#14910)

This commit is contained in:
Igor Támara
2024-11-27 16:34:14 -05:00
committed by GitHub
parent 0f652c7ed3
commit 5c512955d2
2 changed files with 30 additions and 6 deletions

View File

@@ -5,20 +5,20 @@
- Display the file header information:
`objdump -f {{binary}}`
`objdump -f {{path/to/binary}}`
- Display all header information:
`objdump -x {{binary}}`
`objdump -x {{path/to/binary}}`
- Display the disassembled output of executable sections:
`objdump -d {{binary}}`
`objdump -d {{path/to/binary}}`
- Display the disassembled executable sections in intel syntax:
- Display the disassembled executable sections in Intel syntax:
`objdump -M intel -d {{binary}}`
`objdump -M intel -d {{path/to/binary}}`
- Display a complete binary hex dump of all sections:
`objdump -s {{binary}}`
`objdump -s {{path/to/binary}}`