1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/watch.md

16 lines
304 B
Markdown
Raw Normal View History

2014-03-06 13:24:55 +11:00
# 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}}"