severity 14456 wishlist
retitle 14456 multibyte: stat's %[X] counts bytes instead of characters
stop
Hello,
On 20/10/18 12:40 PM, Errembault Philippe wrote:
This has absolutely nothing to do with a translation problem. It is
related with the I18N string processing.
As you can see, the line with
close 14456
stop
(triaging old bugs)
Hello,
On 23/05/13 02:39 PM, camion_spam-debr...@yahoo.fr wrote:
stat (GNU coreutils) 8.5
the format string length is counted in bytes and not in characters so that the
presence of variable length characters causes misalignment
In the following example t
stat (GNU coreutils) 8.5
the format string length is counted in bytes and not in characters so that the
presence of variable length characters causes misalignment
In the following example the character 'é' is 2 bytes long :
$ find . | while read P; do LANG=C stat --printf '%16F 0x%f\n' "$P"; do