From 5dcc3d769bee7ffc196f3c5282dfad648170d7df Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Sun, 26 Jan 2014 11:54:37 -0500 Subject: [PATCH] Added removing files recursively reference to find.md page --- osx/find.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osx/find.md b/osx/find.md index a6c8b3957..f9264b7d7 100644 --- a/osx/find.md +++ b/osx/find.md @@ -14,3 +14,7 @@ - find files modified since a certain time `find {{root_path}} -name {{'*.py'}} -mtime {{-1d}}` + +- remove files recursively + +`find {{root_path}} -name {{'*.py'}} -exec rm {} \;`