[Zope-Checkins] CVS: Zope3 - stupid_clean:1.1.4.1

Guido van Rossum guido@python.org
Thu, 6 Jun 2002 14:53:47 -0400


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv29982

Added Files:
      Tag: Zope3InWonderland-branch
	stupid_clean 
Log Message:
Add this useful utility to the wonderland branch.

=== Added File Zope3/stupid_clean ===
#! /bin/sh

files=`find -name \*.o -o -name \*.so`
if [ ! -z "$files" ] ; then
    rm $files
fi