mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 16:13:31 +02:00
pkill: enhance -9 argument explanation (#7036)
This commit is contained in:
parent
6bd6781609
commit
356e95ce79
1 changed files with 6 additions and 2 deletions
|
@ -6,11 +6,15 @@
|
|||
|
||||
- Kill all processes which match:
|
||||
|
||||
`pkill -9 "{{process_name}}"`
|
||||
`pkill "{{process_name}}"`
|
||||
|
||||
- Kill all processes which match their full command instead of just the process name:
|
||||
|
||||
`pkill -9 --full "{{command_name}}"`
|
||||
`pkill -f "{{command_name}}"`
|
||||
|
||||
- Force kill matching processes (can't be blocked):
|
||||
|
||||
`pkill -9 "{{process_name}}"`
|
||||
|
||||
- Send SIGUSR1 signal to processes which match:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue