소스 검색

xargs: lint, remove controversial example

Igor Shubovych 9 년 전
부모
커밋
f708f359eb
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      pages/common/xargs.md

+ 1 - 5
pages/common/xargs.md

@@ -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`