From: Oleg Broytman Date: Tue, 24 Dec 2013 21:39:57 +0000 (+0400) Subject: find . -delete X-Git-Tag: v4.5.6~3 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=3fae0ac1423484f6169f65ecf30dddd15ccd754a find . -delete find . ... -delete instead of find . ... | xargs rm -f --- 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