So every now and then I find myself wanting to delete all files older than a certain number of days. Here is the linux command to do so.
find ./* -mtime +15 -type f -delete
So every now and then I find myself wanting to delete all files older than a certain number of days. Here is the linux command to do so.
find ./* -mtime +15 -type f -delete