linux watch command : disk usage in seconds
Linux watch command can be used to display the disk usage in seconds
#watch df -h
“watch” will update only in every 2 seconds…To show diskk usage every second, you need to modify above command to
# watch -n1 ‘df -h’
Category: Linux Administration
