pipeview (pv)
pipeview (pv
) shows transfer speed and/or transfer progress through a Unix pipe.
pv
works like cat
. For example,
# Showing both compression progress and speed
pv file | gzip > file.gz
# Sandwich form, showing speed without progress
cat file | pv | gzip > file.gz