#!/bin/sh # . $HOME/.bash_profile #1 #--------Clean up audits---------- find $ORACLE_HOME/rdbms/audit -name "ora_*.aud" -mtime +30 -exec echo Removing File: \\c \; -exec ls -l {} \; -exec rm -f {} \; #-----------------------Clean trc and dump file in udump,cdump & bdump---------------- find /opt/oracle/admin -name \*.trc -mtime +30 -exec echo Removing File: \\c \; -exec ls -l {} \; -exec rm -f {} \; exit;