From f708f359eb113b3b8c89045cc99b4a29d3f950b4 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Fri, 29 Jan 2016 15:30:13 +0200 Subject: [PATCH] xargs: lint, remove controversial example --- pages/common/xargs.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pages/common/xargs.md b/pages/common/xargs.md index 8d30bd739..5a6922008 100644 --- a/pages/common/xargs.md +++ b/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`