From c8ee465c2f596558ef61e3d82b69826b36a5fc1b Mon Sep 17 00:00:00 2001 From: David Hatch <3mail48@gmail.com> Date: Sat, 21 Sep 2019 21:13:07 -0700 Subject: [PATCH] kill: adds a new example of killing a job (#3275) --- pages/common/kill.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/kill.md b/pages/common/kill.md index 3e92f92d3f..8a8fcb39ef 100644 --- a/pages/common/kill.md +++ b/pages/common/kill.md @@ -11,6 +11,10 @@ `kill -l` +- Terminate a background job: + +`kill %{{job_id}}` + - Terminate a program using the SIGHUP (hang up) signal. Many daemons will reload instead of terminating: `kill -{{1|HUP}} {{process_id}}`