kill -9 12345Forcibly terminate a process by PID that won't stop otherwise.
▸ Open this command in the explainer →-9 sends SIGKILL, which the kernel enforces immediately — the process gets no chance to clean up, flush buffers, or save state. Reach for plain `kill` (SIGTERM) first; use -9 only when a process is truly stuck.
$ kill -9 12345
See the full reference for kill — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.