Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #59719
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Subject | Re: PYTHON 3.4 LEFTOVERS |
| Date | 2013-11-17 12:45 +0000 |
| References | (4 earlier) <1279b262-488b-4329-baeb-26b93e75029a@googlegroups.com> <5287a178$0$2288$426a34cc@news.free.fr> <l6a194$lq0$2@dont-email.me> <5288b6cb$0$2112$426a34cc@news.free.fr> <1810d011-9c06-4f39-85fb-572140e053f6@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2773.1384692605.18130.python-list@python.org> (permalink) |
On 17/11/2013 12:34, Ned Batchelder wrote:
> On Sunday, November 17, 2013 7:30:03 AM UTC-5, YBM wrote:
>> Le 17.11.2013 10:12, Nikos a écrit :
>>> Στις 16/11/2013 6:46 μμ, ο/η YBM έγραψε:
>>>> Le 16.11.2013 17:30, Ferrous Cranus a écrit :
>>>>> Mark wrote:
>>>>>
>>>>>> If you have to deliberately post like this in an attempt to annoy
>>>>>> people, would you please not do so using double spaced google crap as
>>>>>> it's very annoying, thank you in anticipation.
>>>>>
>>>>> Sure thing Mark, here:
>>>>>
>>>>> root@secure [~]# find / -name python3.4 | rm -rf
>>>>>
>>>>> root@secure [~]# locate python3.4
>>>>> /root/.local/lib/python3.4
>>>>> /usr/local/include/python3.4m
>>>>> /usr/local/lib/libpython3.4m.a
>>>>> /usr/local/lib/python3.4
>>>>> /usr/local/share/man/man1/python3.4.1
>>>>>
>>>>> still there!!!
>>>>
>>>> You are utterly stupid:
>>>>
>>>> 1st: rm does not read its standard input so doing
>>>> whatever | rm -fr is useless
>>>>
>>>> 2st: even if it had worked (i.e. removed the files) they
>>>> would still appear with locate, as locate is just reading
>>>> a database build every day by updatedb (using find btw)
>>>>
>>>> What you want to do can be done this way :
>>>>
>>>> find / -name python3.4 -exec rm -rf {} \;
>>>
>>> 'find / -name python34 | xargs -rf' does what i need it do
>>
>> certainly not with xargs -rf, but with xargs rm -rf
>>
>>> it works similar to find's built-in exec method using as argument
>>> whatever matches results to.
>>>
>>> find / -name python3.4 -exec rm -rf {}
>>>
>>> So both have same effect i assume.
>>
>> Yes, but they were no xargs in the command lines you wrote
>> originally, Nikos.
>>
>> bla bla | rm ...
>> is not the same as
>> bla bla | xargs rm ...
>>
>> do you suffer of some kind of visual illness?
>
>
> YBM: I'm going to politely ask you again to please stop.
>
> 1) Don't answer off-topic questions here. It only encourages more off-topic questions.
>
> 2) Don't be abusive. http://www.python.org/psf/codeofconduct/
>
> 3) Lastly, your abuse is in the form of a (rhetorical) question, which is likely to simply cause another answer, which we don't want.
>
> Thanks, please do what you can to make this community the kind that you want.
>
> --Ned.
>
So I'll ask again, why is YBM singled out for the code of conduct when I
can't remember it ever being aimed at Nikos? This strikes me as dual
standards, something that I dislike intensely.
--
Python is the second best programming language in the world.
But the best has yet to be invented. Christian Tismer
Mark Lawrence
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
PYTHON 3.4 LEFTOVERS Ferrous Cranus <nikos.gr33k@gmail.com> - 2013-11-16 08:03 -0800
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-16 08:07 -0800
Re: PYTHON 3.4 LEFTOVERS Ferrous Cranus <nikos.gr33k@gmail.com> - 2013-11-16 08:09 -0800
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-16 16:18 +0000
Re: PYTHON 3.4 LEFTOVERS Ferrous Cranus <nikos.gr33k@gmail.com> - 2013-11-16 08:30 -0800
Re: PYTHON 3.4 LEFTOVERS YBM <ybmess@nooos.fr.invalid> - 2013-11-16 17:46 +0100
Re: PYTHON 3.4 LEFTOVERS Nikos <nikos@superhost.gr> - 2013-11-16 19:00 +0200
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-16 09:02 -0800
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-16 17:24 +0000
Re: PYTHON 3.4 LEFTOVERS YBM <ybmess@nooos.fr.invalid> - 2013-11-16 20:46 +0100
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-16 12:13 -0800
Re: PYTHON 3.4 LEFTOVERS Nikos <nikos@superhost.gr> - 2013-11-16 19:14 +0200
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-16 09:20 -0800
Re: PYTHON 3.4 LEFTOVERS Nikos <nikos@superhost.gr> - 2013-11-17 11:12 +0200
Re: PYTHON 3.4 LEFTOVERS rusi <rustompmody@gmail.com> - 2013-11-17 03:50 -0800
Re: PYTHON 3.4 LEFTOVERS YBM <ybmess@nooos.fr.invalid> - 2013-11-17 13:30 +0100
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-17 04:34 -0800
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-17 12:45 +0000
Re: PYTHON 3.4 LEFTOVERS Ned Batchelder <ned@nedbatchelder.com> - 2013-11-17 04:57 -0800
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-17 13:07 +0000
Re: PYTHON 3.4 LEFTOVERS Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2013-11-17 14:33 +0100
Re: PYTHON 3.4 LEFTOVERS Tim Chase <python.list@tim.thechases.com> - 2013-11-16 15:02 -0600
Re: PYTHON 3.4 LEFTOVERS Nikos <nikos@superhost.gr> - 2013-11-17 11:15 +0200
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-16 21:20 +0000
Re: PYTHON 3.4 LEFTOVERS Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2013-11-16 22:26 +0100
Re: PYTHON 3.4 LEFTOVERS Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-16 21:44 +0000
Re: PYTHON 3.4 LEFTOVERS Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2013-11-16 23:07 +0100
Re: PYTHON 3.4 LEFTOVERS xDog Walker <thudfoo@gmail.com> - 2013-11-16 08:24 -0800
Re: PYTHON 3.4 LEFTOVERS PyRate <pyrate@email.cz> - 2013-11-16 17:26 +0100
csiph-web