find . -type f -name “FILE-TO-FIND” -exec rm -f {} \;
find . -type f -mtime +15 -ls ##< + means older then 15 days
find /var/log -type f -mtime -6 -exec tar cvzf messages-msdp.tar.gz {} + ## < -6 means younger then 6 days
find . -type f -name “FILE-TO-FIND” -exec rm -f {} \;
find . -type f -mtime +15 -ls ##< + means older then 15 days
find /var/log -type f -mtime -6 -exec tar cvzf messages-msdp.tar.gz {} + ## < -6 means younger then 6 days