1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-21 21:24:06 +02:00

Merge branch 'master' of github.com:tldr-pages/tldr

This commit is contained in:
Ruben Vereecken 2016-01-13 23:09:16 +01:00
commit 418792e534

View file

@ -7,6 +7,10 @@
`pkill -9 {{process_name}}`
- Kill all processes which match their full command instead of just the process name:
`pkill -9 -f "{{command_name}}"`
- Send SIGUSR1 signal to processes which match:
`pkill -USR1 {{process_name}}`