find: add directory search

This commit is contained in:
Rodrigo Orem 2018-08-25 20:40:32 -03:00 committed by Agniva De Sarker
parent 66d069a09f
commit 8ef91a1e71

View File

@ -33,3 +33,7 @@
- Find files matching a given pattern, while excluding specific paths:
`find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'`
- Find directories matching name:
`find {{root_path}} -type d -name 'httpdocs'`