Crates.io | funst |
lib.rs | funst |
version | 0.1.1 |
source | src |
created_at | 2020-10-28 13:58:07.910625 |
updated_at | 2020-12-25 13:31:44.529914 |
description | A tiny command-line tool to calculate fundamental statistics of numbers given via stdin |
homepage | https://github.com/sile/funst |
repository | https://github.com/sile/funst |
max_upload_size | |
id | 306342 |
size | 17,780 |
funst
is a tiny command-line tool to calculate fundamental statistics of numbers given via the standard input.
$ seq 1 100 | funst
{
"count": 100,
"mean": 50.5,
"stddev": 28.86607004772212,
"min": 1.0,
"median": 50.5,
"max": 100.0
}
Precompiled binaries for Linux are available in the releases page.
$ curl -L https://github.com/sile/funst/releases/download/${VERSION}/funst-${VERSION}.linux-amd64 -o funst
$ chmod +x funst
$ ./funst -h
If you have already installed Cargo, you can install funst
by executing the following command:
$ cargo install funst