Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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}}"
 
PREVIOUS NEXT
Tagged: #linux #check #speed #file #growth
ADD COMMENT
Topic
Name
2+7 =