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 {} \;`