Follow a process progress to read a file
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 …
Read More