1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-19 13:15:42 +02:00

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.
This commit is contained in:
Rodrigo Orem 2018-08-26 00:48:12 -03:00 committed by Agniva De Sarker
parent 8ef91a1e71
commit d3d91a5804

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