Advertisement
Guest User

Untitled

a guest
Sep 24th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. mario@mx260 ~> echo {01..05} | xargs -n1 echo
  2. 01
  3. 02
  4. 03
  5. 04
  6. 05
  7. mario@mx260 ~> echo {01..05} | xargs -I{} -n1 echo {}
  8. 01 02 03 04 05
  9. mario@mx260 ~> echo {01..05} | xargs -I{} -n2 echo {}
  10. {} 01 02
  11. {} 03 04
  12. {} 05
  13. mario@mx260 ~>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement