mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 12:45:59 +02:00
kill: adds a new example of killing a job (#3275)
This commit is contained in:
parent
b7926ee5db
commit
c8ee465c2f
1 changed files with 4 additions and 0 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue