From owner-cvs-all@FreeBSD.ORG Fri May 28 10:18:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48EC916A4CE; Fri, 28 May 2004 10:18:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F15B43D2D; Fri, 28 May 2004 10:18:05 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i4SHHGwb007327; Fri, 28 May 2004 10:17:16 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i4SHHFfU007326; Fri, 28 May 2004 10:17:16 -0700 (PDT) (envelope-from eik) Message-Id: <200405281717.i4SHHFfU007326@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 28 May 2004 10:17:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/find extern.h find.1 find.c find.h function.c option.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 May 2004 17:18:05 -0000 eik 2004/05/28 10:17:15 PDT FreeBSD src repository Modified files: usr.bin/find extern.h find.1 find.c find.h function.c option.c Log: - introduce a new primary `-depth n', which tests whether the depth of the current file relative to the starting point of the traversal is n. The usual +/- modifiers to the argument apply. - while I'm here, fix -maxdepth in the case of a depth-first traversal Print the top ten maintainers of python module ports (works with p5-* too): find /usr/ports -depth 2 \! -name 'py-*' -prune -o \ -depth 3 -name Makefile -execdir make -VMAINTAINER \; \ | sort | uniq -c | sort -nr | head PR: 66667 Reviewed by: ru, joerg Approved by: joerg MFC after: 2 weeks Revision Changes Path 1.21 +1 -0 src/usr.bin/find/extern.h 1.63 +34 -14 src/usr.bin/find/find.1 1.17 +5 -6 src/usr.bin/find/find.c 1.17 +3 -0 src/usr.bin/find/find.h 1.50 +47 -7 src/usr.bin/find/function.c 1.22 +1 -1 src/usr.bin/find/option.c