From: Oleg Broytman Date: Tue, 24 Dec 2013 21:41:19 +0000 (+0400) Subject: find . -delete X-Git-Tag: 2.1.3~13 X-Git-Url: https://git.phdru.name/?p=m_lib.git;a=commitdiff_plain;h=bae42da4e6d97f02aef60993f7de5dd1106a7e75 find . -delete find . ... -delete instead of find . ... | xargs rm -f --- diff --git a/Makefile b/Makefile index d447bbc..f452a6f 100644 --- a/Makefile +++ b/Makefile @@ -5,4 +5,4 @@ distr: .PHONY: clean clean: - find . -name '*.py[co]' -print | xargs rm -f + find . -depth -type f -name '*.py[co]' -delete