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

28
pages.zh/osx/ps.md Normal file
View File

@@ -0,0 +1,28 @@
# ps
> 关于正在运行的进程的信息。
> 更多信息:<https://keith.github.io/xcode-man-pages/ps.1.html>。
- 列出所有正在运行的进程:
`ps aux`
- 列出所有正在运行的进程,包括完整的命令字符串:
`ps auxww`
- 搜索匹配某个字符串的进程:
`ps aux | grep {{string}}`
- 获取进程的父进程 ID
`ps -o ppid= -p {{pid}}`
- 按内存使用量排序进程:
`ps -m`
- 按 CPU 使用量排序进程:
`ps -r`