Re: [newbie] Deleting Netscape .snm files?

2001-08-27 Thread Michael D. Viron
At 09:51 PM 08/26/2001 -0700, you wrote: There are too many folders and sub folders for me to delete each *.snm file via the GNOME file manager so I thought I'd resort to the Linux Use find to locate the files, and then do an rm on what files it finds. find . =name *.snm | xargs rm A shorter

Re: [newbie] Deleting Netscape .snm files?

2001-08-26 Thread David E. Fox
There are too many folders and sub folders for me to delete each *.snm file via the GNOME file manager so I thought I'd resort to the Linux Use find to locate the files, and then do an rm on what files it finds. find . =name *.snm | xargs rm A shorter way: rm `find . -name *.shm` If there