diff --git a/pages/linux/disown.md b/pages/linux/disown.md new file mode 100644 index 0000000000..37e8d51655 --- /dev/null +++ b/pages/linux/disown.md @@ -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`