#data-transfer #stream #speed #estimate

app measure

估计两个流之间的数据传输速度

6 个稳定版本

使用旧的 Rust 2015

1.1.3 2018年11月16日
1.0.1 2018年11月16日

#11 in #estimate

MIT 许可证

9KB
204 代码行

测量

估计两个流之间的数据传输速度

Build Status

安装

$ cargo install measure

用法

measure 1.1
Mota
Measures data transfer given in standard input

USAGE:
    measure [OPTIONS]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -f, --file <FILE>    File to output the transfer rate to instead of stderr
    -u, --unit <UNIT>    Display the result in a different unit format [possible values: b, k, m, g, t]

示例

$ ssh me@my-host 'cat /dev/random' | measure > /dev/null
692.0 KiB/s
3.4 MiB/s
3.4 MiB/s
3.4 MiB/s
3.3 MiB/s
[...]
$ curl -s https://mirrors.sonic.net/pub/OpenBSD/6.4/amd64/install64.iso | measure -u k -f progress > install64.sio& # useless use of measure
$ tail -f progress
2452.0 KiB/s
5296.0 KiB/s
6688.0 KiB/s
6544.0 KiB/s
4176.0 KiB/s
6832.0 KiB/s
[...]

依赖项

~2MB
~25K SLoC