On Fri, Nov 28, 2003 at 01:29:17AM +0200, Ion-Mihai Tetcu wrote:

> I think that if you do :
> cd / && find /usr/ports/ -type f -name 'readme.html' -exec rm {} \;
> and cvsup again you'll get rid of the old directories.

Careful... Make that find command:

    # find /usr/ports -type f -name README.html -exec rm {} \;

Pedants may also prefer:

    # find /usr/ports -type f -name README.html -print | xargs rm

which will save you about 9000 invocations of rm given a ports tree
fully populated with README.html files.

        Cheers,

        Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.                       26 The Paddocks
                                                      Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey         Marlow
Tel: +44 1628 476614                                  Bucks., SL7 1TH UK

Attachment: pgp00000.pgp
Description: PGP signature

Reply via email to