Linux – Delete files older than…


On Linux, to delete files older than 10 days

find /from/path -name '*.txt' -type f -mtime +10 -exec rm {} \;

Leave a Reply

Your email address will not be published. Required fields are marked *