Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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.039 X-Spam-Evidence: '*H*': 0.92; '*S*': 0.00; ';-)': 0.03; 'cc:addr :python-list': 0.11; '"/"': 0.16; '-rf': 0.16; '-tkc': 0.16; 'cached': 0.16; 'deletion': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'rebuild': 0.16; 'subject:PYTHON': 0.16; 'files.': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'certainly': 0.24; "haven't": 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'asking': 0.27; 'header:In-Reply-To:1': 0.27; "doesn't": 0.30; "i'm": 0.30; "they'll": 0.31; 'there.': 0.32; 'figure': 0.32; 'running': 0.33; 'trouble': 0.34; 'but': 0.35; 'charset:us-ascii': 0.36; 'files': 0.38; 'delete': 0.39; 'how': 0.40; 'even': 0.60; 'remove': 0.60; 'commands': 0.60; 'eventually': 0.60; 'gone': 0.61; 'entire': 0.61; "you're": 0.61; 'show': 0.63; 'to:addr:gmail.com': 0.65; 'hey,': 0.75; 'drive.': 0.84; 'process...': 0.84; 'received:50.22': 0.84 Date: Sat, 16 Nov 2013 15:02:24 -0600 From: Tim Chase To: Ferrous Cranus Subject: Re: PYTHON 3.4 LEFTOVERS In-Reply-To: References: X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Get-Message-Sender-Via: boston.accountservergroup.com: authenticated_id: tim@thechases.com Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1384635658 news.xs4all.nl 15886 [2001:888:2000:d::a6]:41446 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:59655 On 2013-11-16 08:03, Ferrous Cranus wrote: > root@secure [~]# find / -name python3.4 | rm -rf [snip] > 1. DELETE ALL REMAINS OF PYTHON3.4 I'm surprised I haven't seen the suggestion to move the "/" to the end of the entire command...it would certainly DELETE ALL REMAINS OF PYTHON3.4 ;-) Note1: DO NOT DO THIS unless you want to also DELETE ALL REMAINS OF YOUR HARD DRIVE. But hey, Python3.4 would be gone in the process... Note2: you're running commands you don't understand AS ROOT?!?!?! You're just asking for trouble there. Note3: since "locate" uses a cached DB of files for rapid finding, and your process doesn't rebuild that locate-DB, they'll continue to show up even after you eventually figure out how to successfully remove the files. Use "find" for both purposes: deletion and verification. -tkc