From 8d3b27d403192d2f0db18c348437582c483ffddc Mon Sep 17 00:00:00 2001 From: Xavier L'Heureux <xavier.lheureux@icloud.com> Date: Mon, 10 Jun 2019 13:41:58 -0400 Subject: [PATCH] Add detaching process instructions Related #849 --- manual/src/pipelines.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/manual/src/pipelines.md b/manual/src/pipelines.md index f2ffbd37..f8732efb 100644 --- a/manual/src/pipelines.md +++ b/manual/src/pipelines.md @@ -61,4 +61,18 @@ command &| command ```sh command | command > stdout -``` \ No newline at end of file +``` + +## Detaching processes + +### Send to background + +```sh +command & +``` + +### Disown (detach from shell) + +```sh +command &! +``` -- GitLab