In RedHat I have a script with the following line:
find /oracle/app/oracle/diag/tnslsnr/listener/alert -name 'log_*' -mtime +5 -exec rm -f {} \;
It supposed to remove files 'log_*' which are older then 5 days, but it removes also files which are only 1 day old. I think the command is good, what else could I check that is doing this unexpected behaviour?