Skip to Content.
Sympa Menu

baslinux - Re: [BL] minimal X for BL2

baslinux AT lists.ibiblio.org

Subject: Baslinux mailing list

List archive

Chronological Thread  
  • From: Ian Scott <mriscott AT yahoo.co.uk>
  • To: keesan AT iamjlamb.com
  • Cc: baslinux AT lists.ibiblio.org
  • Subject: Re: [BL] minimal X for BL2
  • Date: Mon, 26 Apr 2004 02:59:16 -0400 (EDT)

> (Like those of us who go through and hand-delete all the COPYING and
> COPYRIGHT and INSTALL files - is there some way to do a global rm
> instead?)

find / -name INSTALL -exec rm {} \;

(finds all files under the root directory named INSTALL, and executes rm on
them)

You can repeat for COPYRIGHT and COPYING.

Or if you want to be really swish:

for x in INSTAL COPYRIGHT COPYING;do find / -name $x -exec rm {} \;done




Archive powered by MHonArc 2.6.24.

Top of Page