From 085082a8056f55b4323b792c874ca2ecba96bdf3 Mon Sep 17 00:00:00 2001 From: Fernando Fernandez Mancera Date: Thu, 12 Jun 2025 14:43:15 +0200 Subject: [PATCH] Manpages: add podman exec missing example of detach option Signed-off-by: Fernando Fernandez Mancera --- docs/source/markdown/podman-exec.1.md.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/source/markdown/podman-exec.1.md.in b/docs/source/markdown/podman-exec.1.md.in index 35013a9d0b..ae661a8395 100644 --- a/docs/source/markdown/podman-exec.1.md.in +++ b/docs/source/markdown/podman-exec.1.md.in @@ -88,6 +88,11 @@ Execute command as the specified user in selected container: $ podman exec --user root ctrID ls ``` +Execute command but do not attach to the exec session leaving the command running in the background: +``` +$ podman exec -d ctrID find /path/to/search -name yourfile +``` + ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-run(1)](podman-run.1.md)**