kill
Send signals to processes by PID. Use SIGTERM first, SIGKILL only if needed.
Synopsis
kill [options] <pid>
Core Options
-15SIGTERM (graceful stop).
-9SIGKILL (force stop).
-HUPReload configuration (common for daemons).
-lList available signals.
Usage Examples
Graceful Stop
Ask process to terminate.
kill -15 1234Force Stop
Terminate unresponsive process.
kill -9 1234Reload Daemon
Reload config without downtime.
kill -HUP 1234Built for builders.