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

25
pages.zh/common/pkill.md Normal file
View File

@@ -0,0 +1,25 @@
# pkill
> 按名称信号进程。
> 主要用于停止进程。
> 更多信息:<https://www.manned.org/pkill>。
- 杀死所有匹配的进程:
`pkill "{{process_name}}"`
- 杀死所有匹配完整命令的进程,而不仅仅是进程名称:
`pkill -f "{{command_name}}"`
- 强制杀死匹配的进程(无法被阻止):
`pkill -9 "{{process_name}}"`
- 向匹配的进程发送 SIGUSR1 信号:
`pkill -USR1 "{{process_name}}"`
- 杀死主 `firefox` 进程以关闭浏览器:
`pkill --oldest "{{firefox}}"`