pkill: enhance -9 argument explanation (#7036)

beep
Brian Choromanski 2021-10-20 17:06:52 -04:00 committed by GitHub
parent 6bd6781609
commit 356e95ce79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -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: