Browse Source

shortened xargs (#878)

rest_of_arguments was misleading
Andrei Cioara 8 years ago
parent
commit
eb1f864263
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pages/common/xargs.md

+ 2 - 2
pages/common/xargs.md

@@ -14,6 +14,6 @@
 
 `find . -name 'M*' | xargs rm`
 
-- Insert arguments at chosen position:
+- Insert arguments at chosen position, using '%' as the placeholder marker:
 
-`{{arguments}} | xargs -I piped_arguments {{command}} piped_arguments {{rest_of_arguments}}`
+`{{arguments}} | xargs -I % {{command}} % {{extra_arguments}}`