mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 04:42:12 +02:00
16 lines
237 B
Markdown
16 lines
237 B
Markdown
# 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`
|