2024-02-02 01:31:11 +00:00
|
|
|
<p align="center">
|
|
|
|
<img src="assets/hexxy.png" />
|
|
|
|
<div align="center">A modern alternative to `xxd` and `hexdump`</div>
|
|
|
|
</p>
|
2024-01-15 23:49:16 +00:00
|
|
|
|
2024-02-02 01:31:11 +00:00
|
|
|
![example of hexxy in action](assets/img.png)
|
2024-01-16 00:18:43 +00:00
|
|
|
|
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
|
2024-01-25 20:35:41 +00:00
|
|
|
# dump multiple files
|
2024-01-15 23:49:16 +00:00
|
|
|
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-25 20:35:41 +00:00
|
|
|
# display offset in Octal format
|
|
|
|
hexxy -to file.bin
|
2024-01-15 23:49:16 +00:00
|
|
|
```
|