find: added options for multiple search criteria and empty files

added path for -empty option
waldyrious/alt-syntax
Cvetomird91 2015-12-30 20:43:58 +02:00
parent 1f74ef276d
commit f3e3035de7
1 changed files with 8 additions and 0 deletions

View File

@ -25,3 +25,11 @@
- delete files by name, older than a certain number of days
`find {{root_path}} -name {{'*.py'}} -mtime {{-180d}} -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 {{'*.rb'}}