Ver código fonte

Fix up formatting and merge conflicts

Leandro Ostera 9 anos atrás
pai
commit
e1ea11d1ef
1 arquivos alterados com 4 adições e 0 exclusões
  1. 4 0
      pages/common/xargs.md

+ 4 - 0
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}}