ruebenramirez / blog

My blog
http://blog.ruebenramirez.com/
7 stars 0 forks source link

remove files older than 30 days #382

Open ruebenramirez opened 7 years ago

ruebenramirez commented 7 years ago

remove files withfind:

find /path/to/directory/ -type f -mindepth 1 -mtime +30 -delete

source: http://unix.stackexchange.com/a/205539