1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 19:13:45 +02:00

kill: add two examples for signaling multiple processes

This commit is contained in:
Marco Bonelli 2019-01-08 23:48:21 +01:00 committed by Starbeamrainbowlabs
parent 603f06d501
commit a4ade5e1a3

View file

@ -26,3 +26,11 @@
- Signal the operating system to pause a program until a SIGCONT ("continue") signal is received:
`kill -{{17|STOP}} {{process_id}}`
- Send a signal to all processes with the given GID (group id):
`kill -{{signal_name}} -{{group_id}}`
- Kill every process that can be killed by the current user (except init and kill itself):
`kill -9 -1`