There is a shell command that allows you to measure how fast the data goes through it, so you can measure the speed of output of commands in a pipe. So instead of:
$ somecommand | anothercommand
you can do something like:
$ somecommand | ??? | anothercommand
And throughput stats (bytes/sec) are printed to stderr, I think. But I can't for the life of me remember what that command was.
cpipe
... butpv
is equivalent. – Yves Martin Jan 07 '15 at 08:26pv
that is windows compatible ? – Radon8472 Oct 27 '20 at 22:36