Difference between revisions of "Watch"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
 
(7 intermediate revisions by 4 users not shown)
Line 4: Line 4:
 
* [[open a console]]
 
* [[open a console]]
 
* enter
 
* enter
  watch --interval=1 "du -h ''test''"
+
  watch --interval=1 "[[du]] -h ''test''"
  
 
Stop watch using the key combination CTRL_C
 
Stop watch using the key combination CTRL_C
  
 
= See also =
 
= See also =
* [http://man-wiki.net/index.php/1:watch watch's man page]
+
* [http://linux.die.net/man/1/watch watch's man page]

Latest revision as of 08:37, 23 April 2014

watch is a command that allows you to execute another command in a specified interval and display the results.

As an example, to watch the size of a file test in 1 second intervals:

watch --interval=1 "du -h test"

Stop watch using the key combination CTRL_C

See also