1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

Added removing files recursively reference to find.md page

This commit is contained in:
Ruy Adorno 2014-01-26 11:54:37 -05:00
parent 0cc19eb6be
commit 5dcc3d769b

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 {} \;`