1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 00:35:24 +02:00

xargs: lint, remove controversial example

This commit is contained in:
Igor Shubovych 2016-01-29 15:30:13 +02:00
parent 85da9a1c03
commit f708f359eb

View file

@ -10,10 +10,6 @@
`{{arguments_null_terminated}} | xargs -0 {{command}}`
- delete all files that start with 'M'
- Delete all files that start with 'M':
`ls M* | xargs rm`
- assign incoming arguments to a variable so that they may be used in the middle of a command
`ls M* | xargs -J % cp % ~/Desktop`