(Apuntes) Funcional | recycle bin,etc..
rm -rf `find -maxdepth 1 -mindepth 1 -mtime +7`
find -maxdepth 1 -mindepth 1 -mtime +7 -exec rm -f {} +
o
find -maxdepth 1 -mindepth 1 -mtime +7 | xargs rm -f
(no expansion)
find -mtime +7 -delete
Advertisement