hexyl
hexyl copied to clipboard
A command-line hex viewer
I'm on Debian 11 on Linux Deploy (a kind of chroot for Android). My phone has an arm64 SoC. I have installed the arm64 version of Hexyl using `apt`, as...
This pull request fixes #13 partially by adding the `--columns` option to manually set the number of columns. The default is 2 as with previous behavior. Some notes: - the...
Closes #156. This also adds an environment variable, `HEXYL_COLOR_MODE`, so that the color mode can be set by the end user when hexyl is used in scripts. (If you'd rather...
I have some small binary masks, size 20x12 that I can display in my terminal using e.g hexdump: ```bash ❯ hexdump -v -e '20/1 " %02X" "\n"' mask_20x12.y FF FF...
Hi, Thank you for a new release. I was looking into updating the package for NetBSD and realized the man page is provided in markdown. Would it possible to provide...
#38 still left some use of 256-colors for gray; when using tmux on the Linux kernel console, this color gets quantitized to black, so addresses are unreadable https://github.com/sharkdp/hexyl/blob/master/src/lib.rs#L15-L16=
Adds the following options: - `--hex-inner-separator none` Removes the inner separator from the hex display - `--text-inner-separator none` Removes the inner separator from the text display - `--outer-border none` Removes...
While using it for large file, the output will scrolling long-long time , and piping to `more` will output bad string . So, please add pager to output .
I think it would be interesting to try and maintain some level of compatibility with `xxd`. I recently came across this when following [a blog post](https://fasterthanli.me/series/making-our-own-executable-packer/part-1), trying to use `hexyl`...