A file dump creator that cycles through hues to colour each byte! Because why not?
cargo install huedump
(I've uploaded this to https://crates.io so that you can directly install!)Use huedump --help
for help on how to use the huedump
command. Here's the syntax:
sh
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:
sh
huedump some-file-within-this-directory
While this does not:
sh
huedump ~/file.dat
I apologize for this and I'll try to fix this next update.