From 5cf741400ddfca6e1a03db67526dff6bc65ba514 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 17 Jul 2018 20:29:16 +0100 Subject: [PATCH] disown: add page (#2200) --- pages/linux/disown.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/linux/disown.md 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`