mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 21:38:16 +01:00
a46d484671
Missing apostrophe in monitor "node" processes
15 lines
305 B
Markdown
15 lines
305 B
Markdown
# 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}}"`
|