From 33eff9f9ea11c128e1d6fae40e8fccae5a286874 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 2 Jan 2026 03:04:15 +0200 Subject: [PATCH] xargs: add example (#20483) Co-authored-by: Emmanuel Ferdman --- pages/common/xargs.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/xargs.md b/pages/common/xargs.md index b1cf99d111..9ebc03d1f2 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -31,3 +31,7 @@ - Prompt user for confirmation before executing command (confirm with `y` or `Y`): `{{arguments_source}} | xargs {{[-p|--interactive]}} {{command}}` + +- Allow the command to access the terminal for interactive input: + +`{{arguments_source}} | xargs {{[-o|--open-tty]}} {{command}}`