add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/watch.md Normal file
View File

@@ -0,0 +1,20 @@
# watch
> 重复执行一个命令,并在全屏模式下监控输出。
> 更多信息:<https://manned.org/watch>。
- 监控当前目录中的文件:
`watch {{ls}}`
- 监控磁盘空间并突出显示变化:
`watch -d {{df}}`
- 监控“node”进程每 3 秒刷新一次:
`watch -n {{3}} "{{ps aux | grep node}}"`
- 监控磁盘空间,如果有变化则停止监控:
`watch -g {{df}}`