From 8ef91a1e71566b4cc03dc7e5e1ebb660f38bbd9f Mon Sep 17 00:00:00 2001 From: Rodrigo Orem Date: Sat, 25 Aug 2018 20:40:32 -0300 Subject: [PATCH] find: add directory search --- pages/common/find.md | 4 ++++ 1 file changed, 4 insertions(+) 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'`