Files
2024-02-19 00:21:39 -05:00

66 lines
714 B
Plaintext

Command: kill - send a signal to a process
Syntax: kill [-n] process
Flags: -n Signal number to send
Examples: kill 35 # Send signal 15 to process 35
kill -9 40 # Send signal 9 to process 40
kill -2 0 # Send signal 2 to whole process
group
A signal is sent to a given process. By default signal 15
(SIGTERM) is sent. Process 0 means all the processes in the sender's
process group.