Re: [gentoo-user] Don't be like stupid me!

2024-02-12 Thread Björn Fischer
On 2/11/24 03:14:49, William Kenworthy wrote: [...] It occurred to me fairly quickly after that press of RET that I could have done well with a COW snapshot facility, something which has been discussed at length on another recent thread. I even have LVM on my machine for its RAID capabilities.

Re: [gentoo-user] Don't be like stupid me!

2024-02-11 Thread cal
On 2/10/24 07:56, Alan Mackenzie wrote: > Hello, gentoo. > > I was wanting to do a pretty full build of my Emacs working repository. > This involved first purging al *.elc files. The way to do this is > > $ find . -name '*.elc' | xargs rm > > Just as an aside: find supports the `-delete`

Re: [gentoo-user] Don't be like stupid me!

2024-02-11 Thread Alan Mackenzie
Hello, Bill. On Sun, Feb 11, 2024 at 10:14:49 +0800, William Kenworthy wrote: > On 10/2/24 23:56, Alan Mackenzie wrote: > > I was wanting to do a pretty full build of my Emacs working repository. > > This involved first purging al *.elc files. The way to do this is > > $ find . -name

Re: [gentoo-user] Don't be like stupid me!

2024-02-10 Thread William Kenworthy
On 10/2/24 23:56, Alan Mackenzie wrote: Hello, gentoo. I was wanting to do a pretty full build of my Emacs working repository. This involved first purging al *.elc files. The way to do this is $ find . -name '*.elc' | xargs rm . But for some reason, I typed $ find . '*.elc' |

Re: [gentoo-user] Don't be like stupid me!

2024-02-10 Thread Stefan Schmiedl
-- Original Message -- From "Alan Mackenzie" To gentoo-user@lists.gentoo.org Date 10.02.2024 16:56:25 Subject [gentoo-user] Don't be like stupid me! It could have been a lot worse. Boys and girls, don't use $ find | xargs rm unless you really know what yo

[gentoo-user] Don't be like stupid me!

2024-02-10 Thread Alan Mackenzie
Hello, gentoo. I was wanting to do a pretty full build of my Emacs working repository. This involved first purging al *.elc files. The way to do this is $ find . -name '*.elc' | xargs rm .. But for some reason, I typed $ find . '*.elc' | xargs rm .. I even carefully checked it