Sujet : Re: Rationale for aligning data on even bytes in a Unix shell file?
De : janis_papanagnou+ng (at) *nospam* hotmail.com (Janis Papanagnou)
Groupes : comp.lang.cDate : 28. Apr 2025, 08:29:46
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vunapc$2pg9h$1@dont-email.me>
References : 1 2 3 4 5
User-Agent : Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0
On 28.04.2025 02:53, Bonita Montero wrote:
Am 27.04.2025 um 21:55 schrieb Janis Papanagnou:
I think we have to distinguish the technical base size, an octet,
from the actual filenames. My Linux has no problem to represent,
say, filenames in Chinese or German umlaut characters that require
for representation 2 octets.
You're joking. Which applications currently can handle more than
a 7 bit characters with Unix files ?
All Applications on my Unix system, for example
$ touch Ölüberschuß.txt
$ ls Ö*
Ölüberschuß.txt
$ ls Ö* | od -t x1 -c
0000000 c3 96 6c c3 bc 62 65 72 73 63 68 75 c3 9f 2e 74
303 226 l 303 274 b e r s c h u 303 237 . t
0000020 78 74 0a
x t \n
0000023
$ rm Ölüberschuß.txt
Janis