Hi, Erol SANER <[email protected]> (2026-07-26): > Under tr_TR.UTF-8: > > ls -1 /boot/efi | grep -i '^efi$' > > returns no output.
This would:
echo EFI | grep -i '^efı$'
with the final character before the anchor on the right being:
U+0131 LATIN SMALL LETTER DOTLESS I
And this would:
echo EFİ | grep -i '^efi$'
with the final character in the echo being:
U+0130 LATIN CAPITAL LETTER I WITH DOT ABOVE
The presence/absence of the dot being significant in Turkish:
https://en.wikipedia.org/wiki/Turkish_alphabet
And yes, as Steve hinted, setting LC_ALL=C is the way to go: we don't
want to have to know about (or be exposed to) locale-dependent fun here.
Cheers,
--
Cyril Brulebois ([email protected]) <https://debamax.com/>
D-I release manager -- Release team member -- Freelance Consultant
signature.asc
Description: PGP signature

