From e9aae6507bc24a0ca8456b6d3947f10cde8ee9a3 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Tue, 17 Jun 2025 07:48:00 +1000 Subject: [PATCH] xargs: add example (#16869) --- pages/common/xargs.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/xargs.md b/pages/common/xargs.md index 8ca876cfac..d25a8f5bf2 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -27,3 +27,7 @@ - Parallel runs of up to `max-procs` processes at a time; the default is 1. If `max-procs` is 0, xargs will run as many processes as possible at a time: `{{arguments_source}} | xargs {{[-P|--max-procs]}} {{max-procs}} {{command}}` + +- Prompt user for confirmation before executing command (confirm with `y` or `Y`): + +`{{arguments_source}} | xargs {{[-p|--interactive]}} {{command}}`