From owner-svn-src-all@FreeBSD.ORG Thu Jun 21 08:45:58 2012 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72B961065670; Thu, 21 Jun 2012 08:45:58 +0000 (UTC) (envelope-from SRS0=n8fm=EY=FreeBSD.org=brueffer@srs.kundenserver.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.freebsd.org (Postfix) with ESMTP id F29428FC08; Thu, 21 Jun 2012 08:45:57 +0000 (UTC) Received: from ip235-179.wireless.lu.se (ip235-179.wireless.lu.se [130.235.235.179]) by mrelayeu.kundenserver.de (node=mrbap1) with ESMTP (Nemesis) id 0Mam0Q-1SRbH30vpC-00JyNK; Thu, 21 Jun 2012 10:45:43 +0200 Message-ID: <4FE2DF35.5040804@FreeBSD.org> Date: Thu, 21 Jun 2012 10:45:41 +0200 From: Christian Brueffer User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 To: Steve Kargl References: <201204221818.q3MIIn4Y051313@svn.freebsd.org> <20120422184553.GA85374@troutmask.apl.washington.edu> In-Reply-To: <20120422184553.GA85374@troutmask.apl.washington.edu> Content-Type: multipart/mixed; boundary="------------010509040203020300000609" X-Provags-ID: V02:K0:ZXcv39qAy0XvvvssAm3RM666LfcvRFh1dkZixogyoJl D4Mlli+rbdfMwheUT9GPFUcQGS4fDH6gQ4KWYuFtTPJ4V2ojYk cLmHOCam5O2HlD7p3lGlVcnnXYfoI5WuS6R6uJs/TwGZZQ+qZO Kv5Gtn3YFoyzRJvSEZl9seuUuxPepbRmnTBF6iB3NDYXUIUTte OZmsNwfjcWqnPW7TDRN0tOOvRx3RwTNEwSGihVW1Ql6dyM+Bml YhqKWWnGDuxNpezNgFg74EdUmjOyeBkd8ZpHdFulYRn749bIdQ zpRDWF/K331PSCNNowb3HrOikToB4s0azWihzJf9Ss/sAGTzfx uwQZIxv9FfMwsC0e6gYq8B9xAmefp2rPZ65y3zolL Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r234577 - head/usr.bin/stat X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2012 08:45:58 -0000 This is a multi-part message in MIME format. --------------010509040203020300000609 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 4/22/12 20:45 , Steve Kargl wrote: > On Sun, Apr 22, 2012 at 06:18:49PM +0000, Christian Brueffer wrote: >> Author: brueffer >> Date: Sun Apr 22 18:18:49 2012 >> New Revision: 234577 >> URL: http://svn.freebsd.org/changeset/base/234577 >> >> Log: >> Remove duplicate -l description. >> >> Submitted by: Rainer Hurling >> MFC after: 1 week > > The patch should have also fixed the misordering > of the -n, -qi, and -x options. > Hi Steve, sorry for the late reply. Could you say more specifically how you would arrange the order? From a small sampling of our manpages, it seems we don't have "one true" style of ordering options (except from alphabetically, see attached patch). Some manpages order A-Z, then a-z, while others (Apple and OpenBSD seem to do this) order AaBb...Zz. Cheers, Chris --------------010509040203020300000609 Content-Type: text/plain; charset=UTF-8; x-mac-type="0"; x-mac-creator="0"; name="stat.1.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="stat.1.diff" Index: stat.1 =================================================================== --- stat.1 (revision 237294) +++ stat.1 (working copy) @@ -29,7 +29,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 22, 2012 +.Dd June 21, 2012 .Dt STAT 1 .Os .Sh NAME @@ -140,6 +140,15 @@ fall back on .Xr lstat 2 and report information about the link. +.It Fl f Ar format +Display information using the specified format. +See the +.Sx Formats +section for a description of valid formats. +.It Fl l +Display output in +.Nm ls Fl lT +format. .It Fl n Do not force a newline to appear at the end of each piece of output. .It Fl q @@ -151,15 +160,6 @@ When run as .Nm readlink , error messages are automatically suppressed. -.It Fl f Ar format -Display information using the specified format. -See the -.Sx Formats -section for a description of valid formats. -.It Fl l -Display output in -.Nm ls Fl lT -format. .It Fl r Display raw information. That is, for all the fields in the @@ -172,15 +172,15 @@ .Dq shell output format, suitable for initializing variables. -.It Fl x -Display information in a more verbose way as known from some -.Tn Linux -distributions. .It Fl t Ar timefmt Display timestamps using the specified format. This format is passed directly to .Xr strftime 3 . +.It Fl x +Display information in a more verbose way as known from some +.Tn Linux +distributions. .El .Ss Formats Format strings are similar to --------------010509040203020300000609--