huedump 0.1.0

A hex/binary/octal/decimal dump generator that colours all bytes with a different colour!
Documentation

huedump

A file dump creator that cycles through hues to colour each byte! Because why not?

huedump in action

Building

  1. Installl Rust
  2. Run cargo install huedump (I've uploaded this to https://crates.io so that you can directly install!)

Commands

Use huedump --help for help on how to use the huedump command. Here's the syntax:

huedump FILE [--encoding=ENCODING]

Where ENCODING is anyone of:

  • hex for hexadecimal (default)
  • bin for binary
  • dec for decimal
  • oct for octal

Note that FILE currently works only on files within the current working directory (or in child directories). Sorry about that. I'll dig for a Rust library that parses paths really well and update the EXE sometime.

This means that this works:

huedump some-file-within-this-directory

While this does not:

huedump ~/file.dat

I apologize for this and I'll try to fix this next update.