-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
objdump: update page; add Spanish translation (#14910)
- Loading branch information
Showing
2 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters