2014-03-06 02:24:55 +00:00
|
|
|
# watch
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Execute a command repeatedly, and monitor the output in full-screen mode.
|
2021-10-05 04:35:50 +01:00
|
|
|
> More information: <https://manned.org/watch>.
|
2014-03-06 02:24:55 +00:00
|
|
|
|
2019-02-11 18:00:49 +00:00
|
|
|
- Monitor files in the current directory:
|
2014-03-06 02:24:55 +00:00
|
|
|
|
|
|
|
`watch {{ls}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Monitor disk space and highlight the changes:
|
2014-03-06 02:24:55 +00:00
|
|
|
|
|
|
|
`watch -d {{df}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Monitor "node" processes, refreshing every 3 seconds:
|
2014-03-06 02:24:55 +00:00
|
|
|
|
2014-05-04 08:29:14 +01:00
|
|
|
`watch -n {{3}} "{{ps aux | grep node}}"`
|
2023-04-09 19:21:50 +01:00
|
|
|
|
|
|
|
- Monitor disk space and if it changes, stop monitoring:
|
|
|
|
|
|
|
|
`watch -g {{df}}`
|