Answers for "linux check speed of file growth"

0

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}}"
Posted by: Guest on June-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language