From 5c45c602a204ff6568226869f036ba09f8291e5f Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Sun, 10 Dec 2017 18:55:58 +0530 Subject: [PATCH] adding tokens around *.backup --- 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 126ed7d25..84af21ec4 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):