A report from the documentation maintainer
A report from the documentation maintainer
Posted Nov 2, 2016 18:50 UTC (Wed) by robbe (guest, #16131)In reply to: A report from the documentation maintainer by lsl
Parent article: A report from the documentation maintainer
Well, you could set globasciiranges, as documented in the fine manpage... This is not one of those projects that lack in tunable knobs.
$ locale | grep LC_COLLATE
LC_COLLATE="de_AT.UTF-8"
$ echo [A-C]*
A1 A2 b1 B1 b2 B2 c1 c2
$ shopt -s globasciiranges
$ echo [A-C]*
A1 A2 B1 B2
FWIW, I’m one of those people who are glad that we finally transcended ASCII.
