Linux – Delete files older than… Posted by Ray Fox 0 On Linux, to delete files older than 10 days find /from/path -name '*.txt' -type f -mtime +10 -exec rm {} \;