On 6/28/07, Junio C Hamano <gitster@xxxxxxxxx> wrote:
"Alex Riesen" <raa.lkml@xxxxxxxxx> writes: > It fixes the test on system where ActiveState Perl is used. > It is also shorter. > ... > -git config --null --list | perl -0ne 'chop;($key,$value)=... > +git config --null --list | xargs -n1 -0 echo 'Key:' > result This now makes us rely on "xargs -0", which is probably much less portable than Perl isn't it?
Dunno. Have yet too meet a system where it doesn't work. That said, SUSv6 does not mention it.
Maybe postprocess "git config -z" output with "tr '[\000]' 'Q'" or something so that the comparison of the result does not have to worry about NULs? I dunno.
Will try that.
By the way, is it possible for gmail users to avoid attachments when sending patches in?
No. The message text is unpredictably garbled - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html