2024-01-15 23:49:16 +00:00
|
|
|
# Hexxy
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2024-01-16 00:18:43 +00:00
|
|
|
![](img.png)
|
|
|
|
|
2024-01-15 23:49:16 +00:00
|
|
|
## Example usage
|
|
|
|
```sh
|
|
|
|
hexxy /path/to/file.bin
|
|
|
|
# dont output with color
|
|
|
|
hexxy --no-color /path/to/file.bin
|
|
|
|
# refer to multiple files
|
|
|
|
hexxy file1 file2 file3
|
|
|
|
# read from stdin
|
|
|
|
cat mybinary | hexxy
|
2024-01-16 00:21:26 +00:00
|
|
|
# display offset in Decimal format
|
|
|
|
hexxy -td file.bin
|
2024-01-15 23:49:16 +00:00
|
|
|
```
|