From f45df01756137ce4dca6448d183d0d048db53c09 Mon Sep 17 00:00:00 2001 From: mizi Date: Thu, 25 Jan 2024 11:35:41 -0900 Subject: [PATCH] [hexxy] update readme --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 249609b..c782626 100644 --- a/README.md +++ b/README.md @@ -2,20 +2,22 @@ A modern alternative to `xxd` and `hexdump` -Huge thanks to ![igoracmelo](https://github.com/igoracmelo/xx) for the idea and reference. -The idea and code for colorizing xxd/hexdump output in a gradient format came from them. +Huge thanks to ![igoracmelo](https://github.com/igoracmelo/xx) for to use color gradients +to make bytes more readable. -![](img.png) +![example of hexxy in action](img.png) ## Example usage ```sh hexxy /path/to/file.bin # dont output with color hexxy --no-color /path/to/file.bin -# refer to multiple files +# dump multiple files hexxy file1 file2 file3 # read from stdin cat mybinary | hexxy # display offset in Decimal format hexxy -td file.bin +# display offset in Octal format +hexxy -to file.bin ```