For example, you want to see the memory usage of your computer every 2 seconds:
$ watch free -m
This kind of output will show:

(Click on the image for clearer view)
To set the interval(15 seconds) which watch will refresh, use -n option:
$ watch -n 15 free -m
The output:

(Click on the image for clearer view)
To see the differences of each refresh session, use -d. Watch will highlight the changes that happening on that particular moment:
$ watch -d free -m

(Click on image for clearer view)
To exit from watch, just use your trusty Ctrl-c
No comments:
Post a Comment