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.
italian
Rodrigo Orem 2018-08-26 00:48:12 -03:00 committed by Agniva De Sarker
parent 8ef91a1e71
commit d3d91a5804
1 changed files with 0 additions and 4 deletions

View File

@ -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/*}}'`