This script will delete files modified more than 14 days ago and have file name that begin with daily_backup , it will do recursive search within directories that exists in the directory /work/dba/backup/logs/
find /work/dba/backup/logs/ -name "daily_backup*" -mtime +14 -exec rm -f {} ;