From 17927812a78b5ace1e27680f229b5c6533344e39 Mon Sep 17 00:00:00 2001 From: Sahil Bajaj Date: Sun, 10 Dec 2017 15:43:26 +0800 Subject: [PATCH] Remove unnecessary braces --- pages/common/xargs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/xargs.md b/pages/common/xargs.md index db6e40d75..126ed7d25 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -9,7 +9,7 @@ - Delete all files with a `.backup` extension: -`{{find . -name '*.backup'}} | xargs {{rm -v}}` +`find . -name '*.backup' | xargs rm -v` - Convert newlines in the input into NUL (`\0`) characters, and split on those only (useful if the input to xargs contains spaces):