LinuxProcesses
kill
Sends a signal (by default SIGTERM) to a process, typically to stop it.
Syntax
kill [-9] <pid>
Examples
Force-kill an unresponsive process
kill -9 12345Sends a signal (by default SIGTERM) to a process, typically to stop it.
kill [-9] <pid>
Force-kill an unresponsive process
kill -9 12345