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'`