#benchmarking #timing #testing #command-arguments #command-line-tool #measure-time #cli

app tmrs

CLI utility to measure time performance of commands with things like averages

5 unstable releases

0.3.0 Jan 24, 2024
0.2.0 Jan 24, 2024
0.1.2 Jan 24, 2024
0.1.1 Jan 24, 2024
0.1.0 Jan 24, 2024

#617 in Command line utilities

Download history 14/week @ 2024-01-21 8/week @ 2024-02-18 2/week @ 2024-02-25 67/week @ 2024-03-31

67 downloads per month

MIT license

9KB
98 lines

tmrs

CLI utility to measure time performance of commands with things like averages and standard deviation built in.

Name inspired by time, with the obvious rs suffix. Pronounced "timers" (I guess?).

Usage

Just follow tmrs with the command you want to time:

$ tmrs ls
avg: 0.003sec
std dev: 0.000sec

To pass arguments, separate the command from the arguments with --:

$ tmrs -- ls -R
avg: 0.013sec
std dev: 0.006sec

Options

Usage: tmrs [OPTIONS] <COMMAND>...

Arguments:
  <COMMAND>...  The command to time against

Options:
  -n, --number <NUMBER>  Number of runs to average [default: 5]
  -d, --debug            Enable debug logging, log timing for each run
  -v, --verbose          Log the output of the ran commands to stdout
  -h, --help             Print help
  -V, --version          Print version

Installation

Install directly from crates.io and have package built on your machine (takes just a sec!):

$ cargo install tmrs

Clone and build from source:

$ git clone git@github.com:alxgmpr/tmrs.git
$ cd tmrs
$ cargo build --release
$ cp target/release/tmrs /usr/local/bin # or wherever you want

License

MIT

Dependencies

~1.5–2MB
~40K SLoC