Browse Source

kill: adds a new example of killing a job (#3275)

David Hatch 5 years ago
parent
commit
c8ee465c2f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/kill.md

+ 4 - 0
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}}`