From ec26997a1da0cb58ebff9b0bdce070cb9eb5a1de Mon Sep 17 00:00:00 2001 From: Romain Prieto Date: Thu, 6 Mar 2014 13:24:55 +1100 Subject: [PATCH] Create watch.md --- pages/linux/watch.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/linux/watch.md diff --git a/pages/linux/watch.md b/pages/linux/watch.md new file mode 100644 index 0000000000..d68476d819 --- /dev/null +++ b/pages/linux/watch.md @@ -0,0 +1,15 @@ +# watch + +> Execute a command repeatedly, and monitor the output in full-screen mode + +- monitor files in the current folder + +`watch {{ls}}` + +- monitor disk space and highlight the changes + +`watch -d {{df}}` + +- monitor "node" processes, refreshing every 3 seconds + +`watch -n {{3}} "{{ps aux | grep node}}"