pipebench

Measure the speed of STDIN/STDOUT communication and data throughput

brewmacoslinux
Try with needOr install directly
Source

About

Measure the speed of STDIN/STDOUT communication

Commands

pipebench

Examples

Measure throughput of reading from a file through pipe$ cat largefile.txt | pipebench | wc -l
Benchmark pipe speed with data generation$ pipebench < /dev/zero | head -c 1000000 | pipebench
Test STDIN/STDOUT performance with compression$ pipebench | gzip | pipebench | gunzip | pipebench