2014-03-06 06:24:55 +04:00
|
|
|
# watch
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
> Execute a command repeatedly, and monitor the output in full-screen mode.
|
2014-03-06 06:24:55 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Monitor files in the current folder:
|
2014-03-06 06:24:55 +04:00
|
|
|
|
|
|
|
`watch {{ls}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Monitor disk space and highlight the changes:
|
2014-03-06 06:24:55 +04:00
|
|
|
|
|
|
|
`watch -d {{df}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Monitor "node" processes, refreshing every 3 seconds:
|
2014-03-06 06:24:55 +04:00
|
|
|
|
2014-05-04 11:29:14 +04:00
|
|
|
`watch -n {{3}} "{{ps aux | grep node}}"`
|