Skip to content

Commit

Permalink
readelf: add Spanish translation (#12670)
Browse files Browse the repository at this point in the history
* readelf: add Spanish translation

---------

Co-authored-by: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com>
  • Loading branch information
kant and tricantivu committed May 13, 2024
1 parent 9c29e84 commit f854943
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pages.es/linux/readelf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# readelf

> Muestra informaci贸n sobre archivos ELF.
> M谩s informaci贸n: <https://manned.org/readelf.1>.
- Muestra toda la informaci贸n de un archivo ELF:

`readelf -all {{ruta/al/archivo_binario}}`

- Muestra todas las cabeceras presentes en un archivo ELF:

`readelf --headers {{ruta/al/archivo_binario}}`

- Muestra las entradas en la secci贸n de la tabla de s铆mbolos del archivo ELF, si tiene una:

`readelf --symbols {{ruta/al/archivo_binario}}`

- Muestra la informaci贸n de la cabecera ELF:

`readelf --file-header {{ruta/al/archivo_binario}}`

- Muestra informaci贸n de cabecera de la secci贸n ELF:

`readelf --section-headers {{ruta/al/archivo_binario}}`

0 comments on commit f854943

Please sign in to comment.