An open API service indexing awesome lists of open source software.

https://github.com/alexanderthaller/bench-rs

Run a program, measure execution time and print statistics
https://github.com/alexanderthaller/bench-rs

benchmark cli tool

Last synced: over 1 year ago
JSON representation

Run a program, measure execution time and print statistics

Awesome Lists containing this project

README

          

# bench-rs
Benchmark command line commands inspired by [bench](https://github.com/Gabriel439/bench).

## Install

To install bench-rs just run the following command:

```
cargo install bench
```

## CLI Help
```
bench 1.1.0
Alexander Thaller
Run a program, measure execution time and print statistics.

USAGE:
bench [OPTIONS] ...

FLAGS:
-h, --help
Prints help information

-V, --version
Prints version information

OPTIONS:
-d, --id
id to save benchmark under. defaults to command value

-l, --loglevel
loglevel to run under [default: info] [values: trace, debug, info, warn,
error]
-s, --sample_size
how many samples to take [default: 100]

ARGS:
...

```

## Example