hexyl

hexyl 0.17.0

Command-line hex viewer

<rendered-html><p><code>hexyl</code> is a simple hex viewer for the terminal. It uses a colored output to distinguish different categories of bytes (NULL bytes, printable ASCII characters, ASCII whitespace characters, other ASCII characters and non-ASCII).</p> </rendered-html>

https://github.com/sharkdp/hexyl
Apache License 2.0MIT License
main program: hexylprograms: hexyl
Platforms (38)
aarch64-darwini686-freebsdx86_64-solarisriscv32-nonemips-linuxaarch64-netbsdwasm32-wasip1x86_64-windows
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  hexyl
];
Ad-hoc shell
nix-shell -p hexyl
Flake (nix run)
nix run nixpkgs#hexyl