mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 00:27:21 +03:00
pkill: add --oldest example and link (#5445)
This commit is contained in:
parent
045fee830c
commit
07c2ebcc51
@ -2,15 +2,20 @@
|
||||
|
||||
> Signal process by name.
|
||||
> Mostly used for stopping processes.
|
||||
> More information: <https://www.man7.org/linux/man-pages/man1/pkill.1.html>.
|
||||
|
||||
- Kill all processes which match:
|
||||
|
||||
`pkill -9 {{process_name}}`
|
||||
`pkill -9 "{{process_name}}"`
|
||||
|
||||
- Kill all processes which match their full command instead of just the process name:
|
||||
|
||||
`pkill -9 -f "{{command_name}}"`
|
||||
`pkill -9 --full "{{command_name}}"`
|
||||
|
||||
- Send SIGUSR1 signal to processes which match:
|
||||
|
||||
`pkill -USR1 {{process_name}}`
|
||||
`pkill -USR1 "{{process_name}}"`
|
||||
|
||||
- Kill the main `firefox` process to close the browser:
|
||||
|
||||
`pkill --oldest "{{firefox}}"`
|
||||
|
Loading…
Reference in New Issue
Block a user