#!/bin/bash
LOG_DIR="/opt/zbox/app/zentaopro/tmp/log/"
MAX_AGE=20
find "$LOG_DIR" -name "*.log" -type f -mtime +$MAX_AGE -exec rm -f {} \;