mirror of
https://github.com/NotAShelf/hexxy.git
synced 2024-11-22 21:31:12 +00:00
22 lines
479 B
Markdown
22 lines
479 B
Markdown
<p align="center">
|
|
<img src="assets/hexxy.png" />
|
|
<div align="center">A modern alternative to `xxd` and `hexdump`</div>
|
|
</p>
|
|
|
|
![example of hexxy in action](assets/img.png)
|
|
|
|
## Example usage
|
|
```sh
|
|
hexxy /path/to/file.bin
|
|
# dont output with color
|
|
hexxy --no-color /path/to/file.bin
|
|
# 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
|
|
```
|