1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:22:09 +02:00

hexdump: add Spanish translation (#14794)

This commit is contained in:
Igor Támara 2024-11-11 08:44:56 -05:00 committed by GitHub
parent 5d23c10396
commit dfd1721b7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
# hexdump
> Un visor ASCII, decimal, hexadecimal, octal.
> Más información: <https://manned.org/hexdump>.
- Imprime la representación hexadecimal de un archivo, reemplazando líneas duplicadas con '*':
`hexdump {{ruta/al/archivo}}`
- Muestra el desplazamiento de entrada (input offset) en hexadecimal y su representación ASCII en dos columnas:
`hexdump -C {{ruta/al/archivo}}`
- Muestra la representación hexadecimal de un archivo, pero interpreta solo n bytes de la entrada:
`hexdump -C -n{{numero_de_bytes}} {{ruta/al/archivo}}`
- No reemplaza las líneas duplicadas con '*':
`hexdump --no-squeezing {{ruta/al/archivo}}`