From c76ceec8a6c76763d4a2542b5b4d5e86cfe315d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Tue, 27 Feb 2024 13:26:23 -0300 Subject: [PATCH] hexyl: add Spanish translation (#12330) * hexyl: add Spanish translation --------- Co-authored-by: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com> --- pages.es/common/hexyl.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.es/common/hexyl.md diff --git a/pages.es/common/hexyl.md b/pages.es/common/hexyl.md new file mode 100644 index 000000000..31b4cef58 --- /dev/null +++ b/pages.es/common/hexyl.md @@ -0,0 +1,20 @@ +# hexyl + +> Un simple visor hexadecimal para la terminal. Utiliza salida coloreada para distinguir diferentes categorías de bytes. +> Más información: . + +- Imprime la representación hexadecimal de un archivo: + +`hexyl {{ruta/al/archivo}}` + +- Imprime la representación hexadecimal de los primeros `n` bytes de un archivo: + +`hexyl -n {{n}} {{ruta/al/archivo}}` + +- Imprime los bytes 512 a 1024 de un archivo: + +`hexyl -r {{512}}:{{1024}} {{ruta/al/archivo}}` + +- Imprime 512 bytes empezando por el byte 1024: + +`hexyl -r {{1024}}:+{{512}} {{ruta/al/archivo}}`