1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:13:46 +02:00

find: slightly reword the -not -path example

This commit is contained in:
Waldir Pimenta 2017-04-25 22:50:51 +01:00 committed by GitHub
parent d236ec5007
commit cd38a006d8

View file

@ -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/*}}'`