From cd38a006d8a3664b3fcfcb57dac0beb43ed86698 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Tue, 25 Apr 2017 22:50:51 +0100 Subject: [PATCH] find: slightly reword the -not -path example --- pages/common/find.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/find.md b/pages/common/find.md index 1e9ff494d..a5c0f2e82 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -30,6 +30,6 @@ `find {{root_path}} -name '{{*.py}}' -or -name '{{*.r}}'` -- Find files matching path pattern while excluding some certain path: +- Find files matching a given pattern, while excluding specific paths: `find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'`