common/u*: add Chinese translation (#14688)

* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
This commit is contained in:
Jin
2024-11-19 04:23:02 -05:00
committed by GitHub
parent 156075e8b1
commit 2a4ef14253
28 changed files with 601 additions and 0 deletions

20
pages.zh/common/ulimit.md Normal file
View File

@@ -0,0 +1,20 @@
# ulimit
> 获取和设置用户限制。
> 更多信息:<https://manned.org/ulimit>.
- 获取所有用户限制的属性:
`ulimit -a`
- 获取同时打开文件数量的硬限制:
`ulimit -H -n`
- 获取同时打开文件数量的软限制:
`ulimit -S -n`
- 设置每个用户的最大进程限制:
`ulimit -u 30`