Added removing files recursively reference to find.md page

waldyrious/alt-syntax
Ruy Adorno 2014-01-26 11:54:37 -05:00
parent 0cc19eb6be
commit 5dcc3d769b
1 changed files with 4 additions and 0 deletions

View File

@ -14,3 +14,7 @@
- find files modified since a certain time
`find {{root_path}} -name {{'*.py'}} -mtime {{-1d}}`
- remove files recursively
`find {{root_path}} -name {{'*.py'}} -exec rm {} \;`