mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-12-30 20:43:22 +03:00
Create watch.md
This commit is contained in:
parent
c19d867c48
commit
ec26997a1d
15
pages/linux/watch.md
Normal file
15
pages/linux/watch.md
Normal file
@ -0,0 +1,15 @@
|
||||
# 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}}"
|
Loading…
Reference in New Issue
Block a user