Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.022 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'python:': 0.05; 'bash': 0.09; 'reply-to:addr:comp.lang.python': 0.09; 'subject:files': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.15; "';'": 0.16; '-exec': 0.16; '-name': 0.16; 'from:addr:tartley': 0.16; 'from:addr:tartley.com': 0.16; 'from:name:jonathan hartley': 0.16; 'cc:no real name:2**0': 0.21; 'header:In-Reply-To:1': 0.23; 'cc:addr:python.org': 0.29; 'header :User-Agent:1': 0.33; 'received:209.85.212': 0.34; 'cc:2**1': 0.36; 'received:google.com': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.39; 'received:209': 0.40; 'more': 0.60; 'suited': 0.67; 'header:Reply-To:1': 0.70; 'reply-to:no real name:2**0': 0.71; 'reply-to:addr:googlegroups.com': 0.73; 'received:209.85.212.56': 0.91; 'received:mail- vw0-f56.google.com': 0.91 Newsgroups: comp.lang.python Date: Thu, 3 Nov 2011 00:49:35 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=94.170.71.168; posting-account=p0hmcAoAAABcd-yUxQUlUJWkP4UextqO References: <4EB14D9D.8080309@gmail.com> User-Agent: G2/1.0 X-Google-Web-Client: true MIME-Version: 1.0 Subject: Re: leftover pyc files From: Jonathan Hartley To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org, Peter Otten <__peter__@web.de> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: comp.lang.python@googlegroups.com List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Message-ID: Lines: 4 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1320306585 news.xs4all.nl 6884 [2001:888:2000:d::a6]:37505 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:15279 A task like this is more suited to bash than Python: find . -name '*.pyc' -exec rm '{}' ';'