소스 검색

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

David Hatch 5 년 전
부모
커밋
c8ee465c2f
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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}}`