kill
Send a signal to a process (default: SIGTERM)
kill sends SIGTERM (15) by default, a polite request to stop. The process can catch this signal, clean up, and exit gracefully. Always try SIGTERM first.
Example
$ kill 4821
(process 4821 receives SIGTERM)
Tip: Type it yourself in the terminal below - reading is not the same as doing.