diff --git a/manual/src/pipelines.md b/manual/src/pipelines.md
index f2ffbd37ded5e60f513eda85755acbbff7538bd6..f8732efb23e0fed37f66036048e937a65e77b2d0 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 &!
+```