From 0419ff65ec225c6e05591d93c5b9782c32574113 Mon Sep 17 00:00:00 2001 From: TiredSounds Date: Thu, 4 Feb 2016 21:59:35 +0000 Subject: [PATCH] Change 'ls' example for xargs page to 'find -name' --- 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 5a6922008..da7d48932 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -12,4 +12,4 @@ - Delete all files that start with 'M': -`ls M* | xargs rm` +`find -name 'M*' | xargs rm`