> Sends a signal to a process, usually related to stopping the process.
> All signals except for SIGKILL and SIGSTOP can be intercepted by the process to perform a clean exit.
> More information: <https://manned.org/kill>.
- Terminate a program using the default SIGTERM (terminate) signal:
`kill {{process_id}}`
- List signal values and their corresponding names (to be used without the `SIG` prefix). The available options may depend on the `kill` implementation:
`kill {{-l|-L|--table}}`
- Terminate a background job:
`kill %{{job_id}}`
- Terminate a program using the SIGHUP (hang up) signal. Many daemons will reload instead of terminating: