tldr/pages/linux/watch.md

17 lines
360 B
Markdown
Raw Normal View History

2014-03-06 02:24:55 +00:00
# watch
> Execute a command repeatedly, and monitor the output in full-screen mode.
> More information: <https://manned.org/watch>.
2014-03-06 02:24:55 +00:00
- Monitor files in the current directory:
2014-03-06 02:24:55 +00:00
`watch {{ls}}`
- Monitor disk space and highlight the changes:
2014-03-06 02:24:55 +00:00
`watch -d {{df}}`
- Monitor "node" processes, refreshing every 3 seconds:
2014-03-06 02:24:55 +00:00
`watch -n {{3}} "{{ps aux | grep node}}"`