objdump: update page; add Spanish translation (#14910)
This commit is contained in:
24
pages.es/common/objdump.md
Normal file
24
pages.es/common/objdump.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# objdump
|
||||||
|
|
||||||
|
> Muestra información sobre los archivos objeto.
|
||||||
|
> Más información: <https://manned.org/objdump>.
|
||||||
|
|
||||||
|
- Muestra la información del encabezado del archivo:
|
||||||
|
|
||||||
|
`objdump -f {{ruta/al/binario}}`
|
||||||
|
|
||||||
|
- Muestra toda la información del encabezado:
|
||||||
|
|
||||||
|
`objdump -x {{ruta/al/binario}}`
|
||||||
|
|
||||||
|
- Muestra la salida desensamblada (disassembled) de secciones ejecutables:
|
||||||
|
|
||||||
|
`objdump -d {{ruta/al/binario}}`
|
||||||
|
|
||||||
|
- Muestra las secciones ejecutables desensambladas con sintaxis Intel:
|
||||||
|
|
||||||
|
`objdump -M intel -d {{ruta/al/binario}}`
|
||||||
|
|
||||||
|
- Muestra un volcado hexadecimal ruta/al/binario completo de todas las secciones:
|
||||||
|
|
||||||
|
`objdump -s {{ruta/al/binario}}`
|
@@ -5,20 +5,20 @@
|
|||||||
|
|
||||||
- Display the file header information:
|
- Display the file header information:
|
||||||
|
|
||||||
`objdump -f {{binary}}`
|
`objdump -f {{path/to/binary}}`
|
||||||
|
|
||||||
- Display all header information:
|
- Display all header information:
|
||||||
|
|
||||||
`objdump -x {{binary}}`
|
`objdump -x {{path/to/binary}}`
|
||||||
|
|
||||||
- Display the disassembled output of executable sections:
|
- 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:
|
- Display a complete binary hex dump of all sections:
|
||||||
|
|
||||||
`objdump -s {{binary}}`
|
`objdump -s {{path/to/binary}}`
|
||||||
|
Reference in New Issue
Block a user