disown: add page (#2200)

This commit is contained in:
Starbeamrainbowlabs 2018-07-17 20:29:16 +01:00 committed by Owen Voke
parent 2144955671
commit 5cf741400d

16
pages/linux/disown.md Normal file
View File

@ -0,0 +1,16 @@
# disown
> Allow sub-processes to live beyond the shell that they are attached to.
> See also the `jobs` command.
- Disown the current job:
`disown`
- Disown a specific job:
`disown %{{job_number}}`
- Disown all jobs:
`disown -a`