linux watch command : disk usage in seconds

| June 21, 2011 | 0 Comments

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’

Tags:

Category: Linux Administration

Leave a Reply

You must be logged in to post a comment.