find: ignore given directory (#1289)

* find path while excluding certain directory

* delete the `find {{root_path}} -empty` command to meet the demand of 8 commands at most

* tokenize the demo parameter
coverage
Xiang Wang 2017-03-10 08:48:29 -06:00 committed by Jeef
parent 7ced4bbeeb
commit 4626735021
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@
`find {{root_path}} -name '{{*.ext}}' -mtime {{-180}} -delete`
- Find empty files or directories:
`find {{root_path}} -empty`
- Find files matching more than one search criteria:
`find {{root_path}} -name '{{*.py}}' -or -name '{{*.r}}'`
- Find files matching path pattern while excluding some certain path:
`find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'`