kill

From RaySoft

The kill command sends a signal to processes, causing them to terminate or otherwise act upon receiving the signal in some way. Alternatively, it lists information about signals.[1]

Documentation

Further information

Syntax

kill [<PARAMETER> ...] <PID> […]
kill -l [<SIGNAL>]

Parameters

-l
Print a list of signal names.
-p
Specify that kill should only print the process id (pid) of the named processes, and not send any signals.
-s <SIGNAL>
Specify the signal to send. The signal may be given as a signal name or number.

References