emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#9346: closed (wc does not conform to POSIX (additi


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#9346: closed (wc does not conform to POSIX (additional spaces))
Date: Tue, 23 Aug 2011 01:11:02 +0000

Your message dated Tue, 23 Aug 2011 02:07:59 +0100
with message-id <address@hidden>
and subject line Re: bug#9346: wc does not conform to POSIX (additional spaces)
has caused the GNU bug report #9346,
regarding wc does not conform to POSIX (additional spaces)
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
9346: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9346
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: wc does not conform to POSIX (additional spaces) Date: Tue, 23 Aug 2011 02:39:09 +0200 User-agent: Mutt/1.5.21-6194-vl-r44775 (2011-07-13)
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/wc.html
says:

  STDOUT

    By default, the standard output shall contain an entry for each
    input file of the form:

    "%d %d %d %s\n", <newlines>, <words>, <bytes>, <file>

But wc from GNU coreutils 8.12 adds spaces:

$ echo | wc
      1       0       1

Setting POSIXLY_CORRECT=1 doesn't even have any effect here.

-- 
Vincent Lefèvre <address@hidden> - Web: <http://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



--- End Message ---
--- Begin Message --- Subject: Re: bug#9346: wc does not conform to POSIX (additional spaces) Date: Tue, 23 Aug 2011 02:07:59 +0100 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20110707 Thunderbird/5.0
tags 9346 + notabug

On 08/23/2011 01:39 AM, Vincent Lefevre wrote:
> http://pubs.opengroup.org/onlinepubs/9699919799/utilities/wc.html
> says:
> 
>   STDOUT
> 
>     By default, the standard output shall contain an entry for each
>     input file of the form:
> 
>     "%d %d %d %s\n", <newlines>, <words>, <bytes>, <file>
> 
> But wc from GNU coreutils 8.12 adds spaces:
> 
> $ echo | wc
>       1       0       1
> 
> Setting POSIXLY_CORRECT=1 doesn't even have any effect here.
> 

POSIX refers to the printf format above as a pseudo-printf format,
to contrast with the format used in SYS V of "%7d%7d%7d %s\n".
Notice the lack of spaces there, hence problems with big numbers.
So I take the POSIX printf format you referenced, just to ensure
at least 1 space is guaranteed between counts.
Also for any kind of portability, one will need to deal with
a variable number of spaces.
GNU wc uses a dynamic width (try it on a small file),
while also ensuring at least 1 space is present.

cheers,
Pádraig.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]