Subject: Re: bulk/pre-build
To: Jan Schaumann <jschauma@netmeister.org>
From: Hubert Feyrer <hubert@feyrer.de>
List: tech-pkg
Date: 08/22/2006 11:01:16
On Mon, 21 Aug 2006, Jan Schaumann wrote:
> find ${BULKFILESDIR} \( -name $BROKENF -o -name $BRKWRKLOG 	\
> 				-o -name $BLDLOG \) -exec rm -f {} \;
>
> Sound ok?

This will run through any work directories, dunno if that's an issue 
(probably not). But can you use xargs(1) to speed things up a bit?

find ${BULKFILESDIR} \( -name $BROKENF -o -name $BRKWRKLOG \
 	-o -name $BLDLOG \) print \
| xargs rm -f


  - Hubert