1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

Merge pull request #541 from kmoe/pkill

pkill: add page
This commit is contained in:
Waldir Pimenta 2016-01-02 01:03:25 +00:00
commit 3bd87e6746

12
pages/common/pkill.md Normal file
View file

@ -0,0 +1,12 @@
# pkill
> Signal process by name
> Mostly used for stopping processes
- kill all processes which match
`pkill -9 {{process_name}}`
- send SIGUSR1 signal to processes which match
`pkill -USR1 {{process_name}}`