diff --git a/pages/common/xargs.md b/pages/common/xargs.md index f0f4643d4..62058e3a7 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -13,3 +13,7 @@ - Delete all files that start with 'M': `find . -name 'M*' | xargs rm` + +- Inserting arguments at chosen position: + +`{{arguments}} | xargs -I piped_arguments {{command}} piped_arguments {{rest_of_arguments}}