pipebench

Measure throughput speed of data piped through stdin and stdout

brewmacoslinux
Try with needOr install directly
Source

About

Measure the speed of STDIN/STDOUT communication

Commands

pipebench

Examples

measure how fast data reads from a file$ cat largefile.bin | pipebench | wc -c
test compression speed with gzip$ pipebench < input.txt | gzip > output.gz
benchmark network pipe performance$ ssh remote-host 'cat bigfile' | pipebench > /dev/null
check how fast data transfers through a pipeline$ dd if=/dev/zero bs=1M count=100 | pipebench | dd of=/dev/null
monitor throughput while copying large files$ pipebench < input.iso > output.iso