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:
parent
5d23c10396
commit
dfd1721b7e
1 changed files with 20 additions and 0 deletions
20
pages.es/common/hexdump.md
Normal file
20
pages.es/common/hexdump.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue