From c0c114e03300124f9cc62bf1bec4f4c4ffa87623 Mon Sep 17 00:00:00 2001 From: TiredSounds Date: Fri, 5 Feb 2016 20:48:05 +0000 Subject: [PATCH] Include path in find example in xargs page. --- 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 da7d48932..f0f4643d4 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -12,4 +12,4 @@ - Delete all files that start with 'M': -`find -name 'M*' | xargs rm` +`find . -name 'M*' | xargs rm`