glances, ifconfig, kill, killall, nano, neofetch, pm2, and screen: add Chinese translation (#14628)
* Add Chinese translations for glances, ifconfig, kill, killall, nano, neofetch, pm2, and screen.
* Improvement to the Chinese translation for screen.
* Fix formatting issues in glances, pm2, and neofetch Chinese versions
* Update nano and screen Chinese pages to match English page.
* Update pages.zh/common/screen.md
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* Update pages.zh/common/nano.md
Ensure the format is the same as the English version
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* glances, nano: Ensure Chinese version matches English format
* nano: Chinese translation correction
* nano: Second revision of Chinese translation, fixing all missing backticks.
* nano: Handle missing quotation marks in Chinese translation
* Update pages.zh/common/neofetch.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/ifconfig.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/glances.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/glances.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update neofetch.md
* Update neofetch.md
---------
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2024-11-06 03:43:50 -05:00
|
|
|
# killall
|
|
|
|
|
|
|
|
> 根据进程名称向所有实例发送终止信号(必须是精确的进程名称)。
|
|
|
|
> 除了 SIGKILL 和 SIGSTOP,所有信号都可以被进程拦截,从而实现正常退出。
|
|
|
|
> 更多信息:<https://manned.org/killall>.
|
|
|
|
|
|
|
|
- 使用默认的 SIGTERM(终止)信号结束进程:
|
|
|
|
|
|
|
|
`killall {{进程名称}}`
|
|
|
|
|
|
|
|
- 列出可用的信号名称(使用时无需加 `SIG` 前缀):
|
|
|
|
|
|
|
|
`killall -l`
|
|
|
|
|
|
|
|
- 交互式地询问确认后再终止进程:
|
|
|
|
|
|
|
|
`killall -i {{进程名称}}`
|
|
|
|
|
2025-03-23 01:42:58 +02:00
|
|
|
- 使用 SIGINT(中断)信号终止进程,与按下 `<Ctrl c>` 发送的信号相同:
|
glances, ifconfig, kill, killall, nano, neofetch, pm2, and screen: add Chinese translation (#14628)
* Add Chinese translations for glances, ifconfig, kill, killall, nano, neofetch, pm2, and screen.
* Improvement to the Chinese translation for screen.
* Fix formatting issues in glances, pm2, and neofetch Chinese versions
* Update nano and screen Chinese pages to match English page.
* Update pages.zh/common/screen.md
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* Update pages.zh/common/nano.md
Ensure the format is the same as the English version
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* glances, nano: Ensure Chinese version matches English format
* nano: Chinese translation correction
* nano: Second revision of Chinese translation, fixing all missing backticks.
* nano: Handle missing quotation marks in Chinese translation
* Update pages.zh/common/neofetch.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/ifconfig.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/glances.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update pages.zh/common/glances.md
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
* Update neofetch.md
* Update neofetch.md
---------
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2024-11-06 03:43:50 -05:00
|
|
|
|
|
|
|
`killall -INT {{进程名称}}`
|
|
|
|
|
|
|
|
- 强制杀死一个进程:
|
|
|
|
|
|
|
|
`killall -KILL {{进程名称}}`
|