From owner-cvs-all@FreeBSD.ORG Mon Feb 25 19:06:44 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D1F816A405; Mon, 25 Feb 2008 19:06:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D56313C4DB; Mon, 25 Feb 2008 19:06:44 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1PJ6hNt005452; Mon, 25 Feb 2008 19:06:43 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1PJ6hwB005451; Mon, 25 Feb 2008 19:06:43 GMT (envelope-from keramida) Message-Id: <200802251906.m1PJ6hwB005451@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 25 Feb 2008 19:06:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/du du.1 du.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 25 Feb 2008 19:06:44 -0000 keramida 2008-02-25 19:06:43 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/du du.1 du.c Log: Implement from scratch a -l option for du(1), to match the same option of the GNU utility. The default behavior of our original `du' is to count hardlinked files only once for each invocation of the utility. With the new -l option they count towards the final size every time they are found. PR: bin/117944 Submitted by: keramida Reviewed by: des, obrien MFC after: 2 weeks Revision Changes Path 1.33 +11 -6 src/usr.bin/du/du.1 1.45 +12 -5 src/usr.bin/du/du.c