linux check speed of file growth code example
Example: linux check speed of file growth
sudo apt install progress
pid=$(lsof -t {{file}}); progress -mp "$pid"
#or with pv (no need to install anything)
lsof {{file}}
#find the pid and the df
pv -d "{{pid}}:{{fd}}"