.pyc files...

Simon John simoninusa2001 at yahoo.co.uk
Sun Nov 14 03:17:10 EST 2004


Stephen Waterbury wrote:

> > OK, stupid question, but it's been bothering me for ages.. J
> >
> > I love Python to bits, but .pyc files always litter my source tree,
and
> > they've always bothered me. ...

> One solution (on unices, at least):
>
> alias cleanpy="find . -name '*.pyc' -exec rm {} ';'"
or with backticks:  rm -rf `find . -name '*.pyc'`




More information about the Python-list mailing list