| Crates.io | entro |
| lib.rs | entro |
| version | 0.1.2 |
| created_at | 2022-11-19 06:49:52.878672+00 |
| updated_at | 2022-11-21 17:57:15.406464+00 |
| description | Program to count character frequency from STDIN |
| homepage | https://github.com/manorajesh/entro |
| repository | https://github.com/manorajesh/entro |
| max_upload_size | |
| id | 718401 |
| size | 11,499 |
Originally designed to determine the entropy of a file, this Rust program counts the character frequency from a file or stdin.
cargo install entro
Program to count character frequency from FILE or STDIN
Usage: entro [OPTIONS] [FILE]
Arguments:
[FILE] Input file or STDIN if not provided
Options:
-x, --hex Print in hex
-b, --binary Print in binary
-l, --length <CHARACTERS> Length of bars in histogram [default: 50]
--bar-char <CHARACTER> Bar character [default: ─]
--bar-cap <CHARACTER> Bar cap character (ending) [default: ⎸]
-h, --help Print help information
-V, --version Print version information
The -x flag prints the key for the character in hexadecimal
The -b option prints the key for the character in binary
The -l option modifies the maximum length of the histogram (all data is clamped within this value)
The --bar-char option changes what character is used for the bar portion of the histogram
The --bar-cap option changes what character is used for the ending character for the bar (the cap)