Delete files older than x days
From Tech-Wiki
Revision as of 21:11, 23 October 2017 by Fabricio.Lima (Talk | contribs) (Created page with " find . -type f -mtime +540 -exec rm {} \;")
find . -type f -mtime +540 -exec rm {} \;
find . -type f -mtime +540 -exec rm {} \;