diff --git a/pages/common/find.md b/pages/common/find.md index 127b3e6d61..b24d87be68 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -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'`