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/common/watch.md Normal file
View File

@@ -0,0 +1,20 @@
# watch
> 定期执行程序,并全屏显示输出。
> 更多信息:<https://manned.org/watch>。
- 重复运行命令并显示结果:
`watch {{command}}`
- 每60秒重新运行命令
`watch -n {{60}} {{command}}`
- 监视目录内容,实时突出显示差异:
`watch -d {{ls -l}}`
- 重复运行管道并显示结果:
`watch '{{command_1}} | {{command_2}} | {{command_3}}'`