#!/bin/bash
find /tools/logs/*.log -type f -exec truncate -s 0 {} \;
find /tools/*/*.out -type f -exec truncate -s 0 {} \;
find /opt/oes/*/*.log -type f -exec truncate -s 0 {} \;
find /opt/oes/*/*/*.log -type f -exec truncate -s 0 {} \;
find /opt/oes/*/*/*/*.log -type f -exec truncate -s 0 {} \;
find /opt/oes/*/*/*/*/*.log -type f -exec truncate -s 0 {} \;
find /opt/oes/*/*/*/*/*/*.log -type f -exec truncate -s 0 {} \;