mirror of https://github.com/CrimsonTome/tldr.git
Added removing files recursively reference to find.md page
parent
0cc19eb6be
commit
5dcc3d769b
|
@ -14,3 +14,7 @@
|
||||||
- find files modified since a certain time
|
- find files modified since a certain time
|
||||||
|
|
||||||
`find {{root_path}} -name {{'*.py'}} -mtime {{-1d}}`
|
`find {{root_path}} -name {{'*.py'}} -mtime {{-1d}}`
|
||||||
|
|
||||||
|
- remove files recursively
|
||||||
|
|
||||||
|
`find {{root_path}} -name {{'*.py'}} -exec rm {} \;`
|
||||||
|
|
Loading…
Reference in New Issue