Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readelf: add Spanish translation #12670

Merged
merged 10 commits into from
May 13, 2024
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: <http://man7.org/linux/man-pages/man1/readelf.1.html>.
kant marked this conversation as resolved.
Show resolved Hide resolved

- Muestra toda la información sobre el archivo ELF:
kant marked this conversation as resolved.
Show resolved Hide resolved

`readelf -all {{ruta/al/binario}}`
kbdharun marked this conversation as resolved.
Show resolved Hide resolved
kant marked this conversation as resolved.
Show resolved Hide resolved

- Muestra todas las cabeceras presentes en el archivo ELF:
kant marked this conversation as resolved.
Show resolved Hide resolved

`readelf --headers {{ruta/al/binario}}`
kant marked this conversation as resolved.
Show resolved Hide resolved

- Muestra las entradas en la sección de la tabla de símbolos del archivo ELF, si tieneff una:
kant marked this conversation as resolved.
Show resolved Hide resolved

`readelf --symbols {{ruta/al/binario}}`
kant marked this conversation as resolved.
Show resolved Hide resolved

- Muestra la información de la cabecera ELF:

`readelf --file-header {{ruta/al/binario}}`
kant marked this conversation as resolved.
Show resolved Hide resolved

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

`readelf --section-headers {{ruta/al/binario}}`
kant marked this conversation as resolved.
Show resolved Hide resolved