4282 shaares
1 result
tagged
file-descriptor
Do you know the pv
command ? It's really nifty.
There are a few use cases:
echo "You can simulate on-screen typing just like in the movies" | pv -qL 10
# Show the incoming TCP packets rate:
tcpdump tcp -w - | pv -btr >/dev/null
# Show the maximum throughput between two machines:
# (provided …