[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#8103: NUL terminated lines
From: |
Eric Blake |
Subject: |
bug#8103: NUL terminated lines |
Date: |
Fri, 25 Feb 2011 13:45:28 -0700 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Lightning/1.0b3pre Mnenhy/0.8.3 Thunderbird/3.1.7 |
On 02/25/2011 01:09 PM, Jim Meyering wrote:
>> Actually the shell does. $'\0' and '' are indistinguishable once passed
>> as argument.
>
> I thought so, too. Then I tried this:
>
> $ zsh -c "printf \$'\0'|wc -c"
> 1
> $ bash -c "printf \$'\0'|wc -c"
> 0
>
> The former prints a NUL byte.
> The latter prints nothing.
>
> So it depends on your shell.
zsh does some magic to preserve NUL bytes _when passed as arguments to
shell builtins_. In this case, printf is a zsh shell builtin,
therefore, zsh's $'\0' is able to preserve the fact that you passed in a
NUL byte, then printf outputs that NUL byte again, such that wc sees it
on stdin.
But zsh is special in that regards, and it violates the upcoming POSIX
wording that will be standardized regarding $'' behavior (which means
zsh will have to add yet another shell option soon, if it hasn't
already, to choose between posix and zsh behavior regarding NUL):
http://austingroupbugs.net/view.php?id=249
If a \xXX or \XXX escape sequence yields a byte whose value
is 0, that byte and any following regular characters and
escape sequences up to the terminating unescaped single-quote
shall be evaluated and discarded.
Bash, on the other hand, strips NUL bytes everywhere. And zsh _can't_
preserve NUL bytes to non-builtins.
[As a side note, printf '\0' portably prints a NUL byte, but that's
because you're passing two bytes on input which get interpreted as an
escape sequence, and not passing a literal NUL byte as in zsh printf $'\0']
--
Eric Blake address@hidden +1-801-349-2682
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature