#!/bin/sh

find /logs/ -name "[ACGPV]*_*.log" | xargs rm -f
find /logs/ -name "core.*" | xargs rm -f

if [ -d /cores ]; then
find /cores/ -name "core.*[0123456789]" | xargs rm -f
fi
rm -f /SpliceCom/core.*
rm -f /core.*
