funst

Crates.iofunst
lib.rsfunst
version0.1.1
sourcesrc
created_at2020-10-28 13:58:07.910625
updated_at2020-12-25 13:31:44.529914
descriptionA tiny command-line tool to calculate fundamental statistics of numbers given via stdin
homepagehttps://github.com/sile/funst
repositoryhttps://github.com/sile/funst
max_upload_size
id306342
size17,780
Takeru Ohta (sile)

documentation

README

funst

funst Documentation Actions Status License: MIT

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
}

Installation

Precompiled binaries

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

Using Cargo

If you have already installed Cargo, you can install funst by executing the following command:

$ cargo install funst
Commit count: 10

cargo fmt