To delete files older than a certain date, you can use the following:
sudo find . -mtime +<AmountOfDays> -type f -delete
#linux #bash
To delete files older than a certain date, you can use the following:
sudo find . -mtime +<AmountOfDays> -type f -delete
#linux #bash