1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-16 17:15:24 +02:00

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'`