From d3d91a5804ab5dae115027105d27503323935e9e Mon Sep 17 00:00:00 2001 From: Rodrigo Orem Date: Sun, 26 Aug 2018 00:48:12 -0300 Subject: [PATCH] find: remove the -or conditional entry Due to the limit of 8 entries, we need to remove one entry to add the search by directory name. The -or conditional example is probably less useful, so it's being removed. --- pages/common/find.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pages/common/find.md b/pages/common/find.md index b24d87be6..a4ff94762 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/*}}'`