funst
is a tiny command-line tool to calculate fundamental statistics of numbers given via the standard input.
console
$ 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.
console
$ 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:
console
$ cargo install funst