From owner-cvs-share Wed Nov 27 15:07:26 1996 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA20478 for cvs-share-outgoing; Wed, 27 Nov 1996 15:07:26 -0800 (PST) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA20436; Wed, 27 Nov 1996 15:07:03 -0800 (PST) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.3/8.7.3) id PAA15761; Wed, 27 Nov 1996 15:06:46 -0800 (PST) Date: Wed, 27 Nov 1996 15:06:46 -0800 (PST) Message-Id: <199611272306.PAA15761@vader.cs.berkeley.edu> To: andreas@klemm.gtn.com CC: andreas@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-share@freefall.freebsd.org In-reply-to: (message from Andreas Klemm on Wed, 27 Nov 1996 07:05:29 +0100 (MET)) Subject: Re: cvs commit: src/share/doc/handbook relnotes.sgml From: asami@freebsd.org (Satoshi Asami) Sender: owner-cvs-share@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * I think I did a: * * root{1010} /usr/ports find . -type d -name pkg -print | wc * 711 711 13849 * * That should be correct ?! Shouldn't it ? ;) No. ;) (1) Don't use find in the ports tree, we've kept things in a tree of same pathlength to all the leaves so you can "echo */*/foo" instead of find. In particular, you found all the "pkg" for the categories (that hold stuff for the README.html templates). (2) Besides, you can accomplish the same thing by "wc INDEX" just as easily. (Ok, it's sometimes out of date, but it's usually within one or two days of the ports tree.) Satoshi