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

italian
David Hatch 2019-09-21 21:13:07 -07:00 committed by Agniva De Sarker
parent b7926ee5db
commit c8ee465c2f
1 changed files with 4 additions and 0 deletions

View File

@ -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}}`