Personal fork of Hexxy, with better execution speed.
Find a file
2024-02-01 16:31:11 -09:00
color.go [hexxy] move dev to main and remove unused functions 2024-02-01 16:22:54 -09:00
encode.go [hexxy] DEV branch - extremely speed up hex encoding 2024-02-01 15:12:24 -09:00
go.mod [hexxy] init 2024-01-15 14:42:30 -09:00
go.sum [hexxy] init 2024-01-15 14:42:30 -09:00
hexxy.go [hexxy] DEV branch - extremely speed up hex encoding 2024-02-01 16:23:15 -09:00
README.md [hexxy] DEV branch - extremely speed up hex encoding 2024-02-01 16:31:11 -09:00
reverse.go [hexxy] DEV branch - extremely speed up hex encoding 2024-02-01 15:12:24 -09:00

A modern alternative to `xxd` and `hexdump`

example of hexxy in action

Example usage

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