[pappy@chmodx]:$ man kill

$ kill

Send a signal to a process

DOCUMENTEDProcessesUbuntu 24.04 LTS baseline
Use care. This command sends signals to processes. Verify the PID before sending a terminating signal, especially SIGKILL.

Synopsis

kill [options] <pid> [...]

What it does

Examples

Ask a process to terminate
kill 1234
Send SIGTERM explicitly
kill -TERM 1234
Force termination with SIGKILL
kill -KILL 1234

Important details

These examples are intentionally conservative. Command behavior can still depend on filesystem state, permissions, locale, shell, installed package version, and other system configuration. For exact option semantics, the linked authoritative documentation is the source of truth.