#!/bin/bash
if [ -d /var/opt/bukmmadm/tmp ]; then
    find /var/opt/bukmmadm/tmp/ -type f -atime +1 -exec rm {} \; >/dev/null 2>/dev/null
fi
