diff --git a/pages/common/find.md b/pages/common/find.md index b24d87be68..a4ff94762a 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -26,10 +26,6 @@ `find {{root_path}} -name '{{*.ext}}' -mtime {{+180}} -delete` -- Find files matching more than one search criteria: - -`find {{root_path}} -name '{{*.py}}' -or -name '{{*.r}}'` - - Find files matching a given pattern, while excluding specific paths: `find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'`