From 3fae0ac1423484f6169f65ecf30dddd15ccd754a Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 25 Dec 2013 01:39:57 +0400 Subject: [PATCH] find . -delete find . ... -delete instead of find . ... | xargs rm -f --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bbf6e08..8e5e67a 100644 --- a/Makefile +++ b/Makefile @@ -31,4 +31,4 @@ examples_distr: .PHONY: clean clean: - find . -name '*.py[co]' -print | xargs rm -f + find . -depth -type f -name '*.py[co]' -delete -- 2.39.2